cancelOrder
Cancel active cryptocurrency trading orders on the Aster exchange by specifying the trading symbol and order identifier to manage positions and execute trading strategies.
Instructions
Cancel an active order.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| orderId | No | ||
| origClientOrderId | No | ||
| symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"orderId": {
"type": "number"
},
"origClientOrderId": {
"type": "string"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}