查询交易员当前带单列表
限速规则: 10次/1s (ip)
HTTP请求
- GET /api/v2/copy/mix-broker/query-current-traces
请求示例
curl "https://api.bitget.com/api/v2/copy/mix-broker/query-current-traces?traderId=7c6525121a9&productType=USDT-FUTURES&symbol=btcusdt" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
请求参数
参数名 | 参数类型 | 是否必须 | 描述 |
---|---|---|---|
traderId | String | 是 | 交易员UID |
symbol | String | 否 | 币对 |
productType | String | 是 | 产品类型USDT-FUTURES USDT专业合约COIN-FUTURES 混合合约USDC-FUTURES USDC专业合约 |
idLessThan | String | 否 | 请求此ID之前(更旧的数据)的分页内容,传的值为对应接口的 endId。 |
idGreaterThan | String | 否 | 请求此ID之后(更新的数据)的分页内容,传的值为对应接口的 endId |
startTime | String | 否 | 开始时间戳 (跟单创建时间) Unix时间戳的毫秒数格式,如 1597026383085 (时间跨度最大支持三个月,若不传结束时间,则默认结束时间为三个月。) |
endTime | String | 否 | 结束时间戳 (跟单创建时间) Unix时间戳的毫秒数格式,如 1597026383085 (时间跨度最大支持三个月,若不传开始时间,则默认开始时间为三个月。) |
limit | String | 否 | 查询条数 默认值:20;最大值:100 |
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1685692706038,
"data": [
{
"trackingNo": "1",
"openOrderId": "12121",
"marginMode": "cross",
"posSide": "long",
"symbol": "ETHUSDT",
"openLeverage": "20",
"openPriceAvg": "2121",
"openTime": "1685692706038",
"openSize": "10",
"openFee": "-0.12",
"marginAmount": "1212",
"followCount": "16",
"stopSurplusPrice": "2300",
"stopLossPrice": "1500",
"cTime": "1685692706038"
}
]
}
返回参数
返回字段 | 参数类型 | 字段说明 |
---|---|---|
trackingNo | String | 跟单号 |
openOrderId | String | 开仓订单id |
marginMode | String | 仓位模式 isolated 逐仓 cross 全仓 |
posSide | String | 持仓方向 long 双向持仓多头 short 双向持仓空头 |
symbol | String | 交易对 |
openLeverage | String | 开仓杠杆 |
openPriceAvg | String | 开仓均价 |
openTime | String | 开仓时间 (毫秒时间戳) |
openSize | String | 开仓数量 |
openFee | String | 开仓手续费 (只展示usdt,不展示抵扣) |
marginAmount | String | 保证金 |
followCount | String | 此笔订单跟单人数 |
stopSurplusPrice | String | 止盈价 |
stopLossPrice | String | 止损价 |