getForceOrders
Retrieve cryptocurrency force orders including liquidations and ADL events from Aster Finance Futures API to monitor automated position closures and analyze market conditions.
Instructions
Get user's force orders.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| autoCloseType | No | ||
| endTime | No | ||
| limit | No | ||
| startTime | No | ||
| symbol | No |
Input Schema (JSON Schema)
{
"properties": {
"autoCloseType": {
"enum": [
"LIQUIDATION",
"ADL"
],
"type": "string"
},
"endTime": {
"type": "number"
},
"limit": {
"type": "number"
},
"startTime": {
"type": "number"
},
"symbol": {
"type": "string"
}
},
"type": "object"
}