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.
21 lines
400 B
21 lines
400 B
from huobi.constant import *
|
|
|
|
|
|
class MarketStatus:
|
|
"""
|
|
The Huobi market status info.
|
|
|
|
:member
|
|
marketStatus: .
|
|
haltStartTime: .
|
|
haltEndTime: .
|
|
haltReason:
|
|
affectedSymbols:
|
|
"""
|
|
|
|
def __init__(self):
|
|
self.marketStatus = MarketStatus.NORMAL
|
|
self.haltStartTime = -1
|
|
self.haltEndTime = -1
|
|
self.affectedSymbols = ""
|