Query In-Flight Order Counts
HTTP Request
- POST
/api/v1/private/order/open_order_total_count
Required Permission: View Order Details
Request Parameters
None
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| sumCount | int | Total count of open orders |
| limitOrderCount | int | Count of limit orders |
| stopOrderCount | int | Count of take-profit/stop-loss orders |
| planOrderCount | int | Count of plan orders |
| trackOrderCount | int | Count of trailing orders |
Response
{
"success": true,
"code": 0,
"data": {
"sumCount": 1,
"limitOrderCount": 1,
"stopOrderCount": 0,
"planOrderCount": 0,
"trackOrderCount": 0
}
}