queryOrder
Check cryptocurrency order status on Aster Finance Futures API using symbol and optional order identifiers to monitor trading positions.
Instructions
Check an order's status.
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"
}