queryOpenOrder
Check the status and details of active cryptocurrency futures orders on Aster exchange using symbol, order ID, or client order ID parameters.
Instructions
Query current open 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"
}