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.

16 lines
325 B

from huobi.client.market import MarketClient
def callback(price_depth_event: 'PriceDepthBboEvent'):
price_depth_event.print_object()
print()
def error(e: 'HuobiApiException'):
print(e.error_code + e.error_message)
market_client = MarketClient()
market_client.sub_pricedepth_bbo("btcusdt", callback, error)