Get Historical Leader Order
Type: GET
Description: /v1/copy-trade-order/copy-trade/order/his-leader-order
Limit Flow Rules
2/s/apikey
Parameters
Name | Type | Mandatory | Default | Description | Ranges |
---|---|---|---|---|---|
symbol | string | No | Trading pair, if not filled in, represents all | ||
direction | string | No | NEXT | Query direction | PREV - previous, NEXT - next |
limit | number | No | 10 | Number of pages | 1-100 |
id | object | No | Start ID, e.g. 6216559590087220004 |
Response Example
Response
{
"rc": 0,
"mc": "string",
"ma": [{}],
"result": [
{
"id": "string",
"orderId": "string", // order id
"symbol": "string", // symbol
"buySize": 0, // buy quantity
"buyTime": 0, // buy time
"buyPrice": 0, // buy price
"sellSize": 0, // sell quantity
"sellTime": 0, // sell time
"sellPrice": 0, // sell price
"profit": 0, // profit
"profitRate": 0, // profit rate
"triggerProfitPrice": 0, // trigger profit price
"triggerStopPrice": 0, // trigger stop price
"followCount": 0 // number of followers
}
]
}