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.
11 lines
369 B
11 lines
369 B
from huobi.client.trade import TradeClient
|
|
from huobi.constant import *
|
|
from huobi.utils import *
|
|
|
|
order_id = 25943298415466
|
|
trade_client = TradeClient(api_key=g_api_key, secret_key=g_secret_key)
|
|
orderObj = trade_client.get_order(order_id=order_id)
|
|
LogInfo.output("======= get order by order id : {order_id} =======".format(order_id=order_id))
|
|
orderObj.print_object()
|
|
|