私はPHPを使用しています。API 経由で 1 つのアクティブな注文をキャンセルしようとすると、エラーが発生しました:
"error" => array:2 [▼
"message" => "orderIDs or clOrdIDs must be sent."
"name" => "ValidationError"
]
orderID を配列として配置します (これは私の lib メソッドです):
public function cancelOrder($orderID) {
$symbol = self::SYMBOL;
$data['method'] = "DELETE";
$data['function'] = "order";
$data['params'] = array(
"orderID" => $orderID, // ['r5ff364da-4243-8ee3-7853-6fb0f9f7e44d']
);
return $this->authQuery($data);
}
私が間違っていることは何ですか? https://www.bitmex.com/api/explorer/#!/Order/Order_cancel