Sử dụng hàm IO và tham khảo tài liệu BitMEX cho các thông số cụ thể:https://www.fmz.com/bbs-topic/3666
Lệnh tạo thị trường (chỉ thi hành thụ động)
var id = exchange.IO("api", "POST", "/api/v1/order", "symbol=XBTUSD&side=Buy&orderQty=1&price=5000&execInst=ParticipateDoNotInitiate")
Đặt đơn đặt hàng hàng loạt
var bulk = []
bulk.push({symbol:'XBTUSD', side:'Buy', orderQty:100, price:5000, execInst:'ParticipateDoNotInitiate'})
bulk.push({symbol:'XBTUSD', side:'Buy', orderQty:200, price:5100, execInst:'ParticipateDoNotInitiate'})
var param = "orders=" + JSON.stringify(bulk)
var ids = exchange.IO("api", "POST", "/api/v1/order/bulk", param)
Log(ids)
Hủy tất cả các đơn đặt hàng.
exchange.IO("api","DELETE","/api/v1/order/all","symbol=XBTUSD")