Bitmex order error, please help

Author: laoball, Created: 2022-03-23 16:08:03, Updated:

A bitmex policy that was written earlier was re-run and found that the order could not be placed, and the following error message appeared: Futures_OP 4: 404: {error:{message:Not Found,name:HTTPError}}, before the message: {symbol:BCHUSD,side:Buy,orderQty:10,price:365.7,execInst:ParticipateDoNotInitiate}], I am following the language list in this article, is the exchange updating the single command or has the single sentence changed in fMZ?


More

laoballAfter an afternoon of debriefing, I finally found out that the individual order instructions could still be executed, but the batch order could not be recognized. Please check the batch order instructions at https://www.fmz.com/bbs-topic/3683 for any problems. Thank you.

laoballThe following transaction code, which is based on the example given by FMZ, was mostly still functional in 2020 and is now suddenly no longer functional. var temporders = [] Temporders.push (({symbol: symbol, side: dirction, orderQty: value, price: nowprice, execInst:'ParticipateDoNotInitiate'}) is a command that is used to push temporders. var param = "orders=" + JSON.stringify ((temporders)); Log ((temporders)) var id = exchange.IO (("api", "POST", "/api/v1/order/bulk", param);// Bulk orders are submitted here return id

The Little DreamHello, Futures_OP 4 is an exchange.IO interface call error report, you need to check the call code for this interface here.