获取带单者当前带单订单
请求类型: GET
接口路径: /v1/copy-trade-order/public/copy-trade/order/leader-order-page
限流规则
2次/秒/IP
请求参数
参数名 | 类型 | 是否必填 | 默认值 | 描述 | 取值范围 |
---|---|---|---|---|---|
leaderAccountId | number | 是 | 带单账户ID | ||
symbol | string | 否 | 交易对,例如 btc_usdt 。不填则查询全部 | ||
type | number | 是 | 类型 | 查询类型,1:详细; 2:汇总 |
响应示例
响应
{
"rc": 0,
"mc": "string",
"ma": [{}],
"result": [
{
"id": "string", // ID
"orderId": "string", // 订单ID
"symbol": "string", // 交易对
"buySize": 0, // 买入数量
"buyTime": 0, // 买入时间
"buyPrice": 0, // 买入价格
"sellSize": 0, // 卖出数量
"sellTime": 0, // 卖出时间
"sellPrice": 0, // 卖出价格
"profit": 0, // 盈亏
"profitRate": 0, // 盈亏率
"triggerProfitPrice": 0, // 止盈价格
"triggerStopPrice": 0, // 止损价格
"followCount": 0 // 跟单人数
}
]
}