跳转至

查询当前委托

地址: /openApi/contract/currentList

接收参数

需要

提交方式:get

提交参数

参数名 是否必需 类型 示例 说明
symbol string 交易对(当前交易对必传,全部交易对不传)
from int 122 查询起始order_id
direct string prev 查询方向(默认 prev),prev 向前,时间(或 ID)倒序;next 向后,时间(或 ID)正序)。(举例一列数:1,2,3,4,5。from=4,prev有3,2,1;next只有5)
limit int 20 分页返回的结果集数量,默认为20,最大为100(具体参见分页处的描述)
is_full int 1 1逐仓 2全仓

返回参数

参数名 是否必需 类型 示例 说明
errno int 0 返回状态码
errmsg string 成功 返回信息
result object 见示例 返回数据

result参数

参数名 是否必需 类型 示例 说明
order_id string BG5000181583375122413SZXEIX 订单号
ctime int 1576746253 委托时间
symbol string ETH-USDT 交易对
price string 1 委托价
price_avg string 0 成交均价
lever_rate int 10 杠杆倍数
amount string 10 委托数量
deal_amount string 0 成交数量
type string buy-limit 委托类型
status int 1 订单状态(1=挂单中,2=部分成交,3=已成交,4=撤销中,5=部分撤销,6=已撤销)
contract_type string open 开仓/平仓标识(open开仓 close平仓)
trigger_price string 1 触发价
stop_profit_price string 15 止盈价格
stop_loss_price string 10 止损价格

返回示例

JSON
{
    "errno": 0,
    "errmsg": "success",
    "result": [
        {
            "order_id": "BG5000181583375122413SZXEIX", //订单号
            "ctime": 1576746253, //委托时间
            "symbol": "ETH-USDT", //交易对
            "price": "1", //委托价
            "price_avg": "0", //成交均价
            "lever_rate": 10, //杠杆倍数
            "amount": "10", //委托数量
            "deal_amount": "0", //成交数量
            "type": "buy-limit", //委托类型
            "status": 1, //状态:1=挂单中,2=部分成交,3=已成交,4=撤销中,5=部分撤销,6=已撤销
            "contract_type": "open", //open开仓 close平仓
            "trigger_price": "1", //触发价
            "stop_profit_price": "15", //止盈价格
            "stop_loss_price": "10" //止损价格
        }
    ]
}