Get market orders of Grid Bot
GET
/ver1/grid_bots/:id/market_ordersReturns a list of market orders for a Grid Bot using its ID.
Response Parameters
An array of grid line orders associated with this trading strategy.
Hide child parametersShow child parameters
The amount of the asset that remains unfulfilled from the total order quantity.
An array of grid line orders associated with this trading strategy.
Hide child parametersShow child parameters
The amount of the asset that remains unfulfilled from the total order quantity.
Example Response
- 200 OK
{
"grid_lines_orders": [
{
"order_id": 1060886383,
"order_type": "BUY",
"status_string": "Inactive",
"created_at": "2024-10-03T19:53:50.598Z",
"updated_at": "2024-10-03T19:53:51.202Z",
"quantity": "1227.0",
"quantity_remaining": "1227.0",
"total": "0.0",
"rate": "0.016287",
"average_price": "0.0"
},
{
"order_id": 1060886382,
"order_type": "BUY",
"status_string": "Inactive",
"created_at": "2024-10-03T19:53:50.505Z",
"updated_at": "2024-10-03T19:53:51.111Z",
"quantity": "1223.0",
"quantity_remaining": "1223.0",
"total": "0.0",
"rate": "0.016352",
"average_price": "0.0"
}
],
"balancing_orders": [
{
"order_id": 1060886271,
"order_type": "BUY",
"status_string": "Filled",
"created_at": "2024-10-03T19:53:39.784Z",
"update_at": "2024-10-03T19:53:41.227Z",
"quantity": "4495.0",
"quantity_remaining": "0.0",
"total": "98.77216807",
"rate": "0.021973786",
"average_price": "0.021973786"
}
]
}