Skip to main content

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

ParameterTypeDescription
sumCountintTotal count of open orders
limitOrderCountintCount of limit orders
stopOrderCountintCount of take-profit/stop-loss orders
planOrderCountintCount of plan orders
trackOrderCountintCount of trailing orders

Response

{
"success": true,
"code": 0,
"data": {
"sumCount": 1,
"limitOrderCount": 1,
"stopOrderCount": 0,
"planOrderCount": 0,
"trackOrderCount": 0
}
}