cancelBatchOrders
Cancel multiple cryptocurrency trading orders simultaneously on Aster Finance Futures by specifying order IDs or client order IDs for a given trading symbol.
Instructions
Cancel multiple orders.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| orderIdList | No | ||
| origClientOrderIdList | No | ||
| symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"orderIdList": {
"items": {
"type": "number"
},
"type": "array"
},
"origClientOrderIdList": {
"items": {
"type": "string"
},
"type": "array"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}