You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
class ExchangeInfo:
|
|
"""
|
|
The Huobi supported the symbols and currencies.
|
|
|
|
:member
|
|
symbol_list: The symbol list. The content is Symbol class.
|
|
currencies: The currency list. The content is string value.
|
|
"""
|
|
|
|
def __init__(self):
|
|
self.symbol_list = list()
|
|
self.currencies = list()
|