我用币安api文档下单取得的orderid,用fmz的exchange.GetOrder()却查不到这个id订单,提示GetOrder(154432759): 400: {“code”:-2013,“msg”:“Order does not exist.”},而单子是已经下到交易所里了的。而我用fmz的exchange.Buy(-1, 1)产生的orderid
就可以查的到。请问我的问题出在哪里了?
message =“symbol=” + str(“SNX”)+“USDT”+ “&side=BUY”+"&type=MARKET"+ “&quantity=”+ str(1)
idsecondtemp = exchange.IO("api", “POST”, “/fapi/v1/order”, message) #下多单
Log(“第二交易所Biance返回的idsecondtemp=”,idsecondtemp)
idsecond=idsecondtemp[“orderId”]
Log(“idsecond”,idsecond)
GetoderByidsecond=exchange.GetOrder(idsecond)
Log(GetoderByidsecond)
makebit 需要切换交易对,回答完毕
小草 切换交易对了没有