跳转至

历史委托

地址: openApi/contract/entrustDetail

接收参数

需要

提交方式:get

示例

提交参数

参数名 是否必需 类型 示例 说明
order_id string BM121241631598302178LNZN11 委托单号

返回参数

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

result参数

参数名 是否必需 类型 示例 说明
order_id string BM121241631598302178LNZN11 订单号
ctime int 1576746253 委托时间
symbol string EOS-USDT 交易对
price string 14 委托价格
price_avg string 15 成交均价
lever_rate int 10 杠杆倍数
amount string 150 委托数量
deal_amount string 100 已成交
type string buy-limit 委托类型
status int 3 订单状态(1=挂单中,2=部分成交,3=已成交,4=撤销中,5=部分撤销,6=已撤销)
contract_type string open/close 开仓/平仓标识(open开仓 close平仓)
profit string 20 总盈亏
closeOrders array 包含平仓单信息的数组 开仓对应的平仓订单信息数组

result -> closeOrders参数

参数名 是否必需 类型 示例 说明
order_id string 11532 订单号
ctime int 1576746253 委托时间
symbol string EOS-USDT 交易对
price string 14 委托价格
price_avg string 15 成交均价
lever_rate int 10 杠杆倍数
amount string 150 委托数量
deal_amount string 100 已成交
type string buy-limit 委托类型
status int 3 订单状态{1=挂单中,2=部分成交,3=已成交,4=撤销中,5=部分撤销,6=已撤销}
contract_type string close 平仓(open开仓 close平仓)
profit string 10 总盈亏

返回示例

JSON
{
    "errno": 0,
    "errmsg": "success",
    "result": {
        "order_id": "BM121241631598302178LNZN11", //订单号
        "ctime": 1576746253, //委托时间
        "symbol": "EOS-USDT", //交易对
        "price": "14", //委托价格
        "price_avg": "15", //成交均价
        "lever_rate": 10, //杠杆倍数
        "amount": "150", //委托数量
        "deal_amount": "100", //已成交
        "type": "buy-limit", //委托类型
        "status": 3, //1=挂单中,2=部分成交,3=已成交,4=撤销中,5=部分撤销,6=已撤销
        "contract_type": "open", // open开仓 close平仓
        "profit": "20", //总盈亏
        "closeOrders": [ //开仓时对应止盈止损平仓单
            {
                "order_id": "11532", //订单号
                "ctime": 1576746253, //委托时间
                "symbol": "EOS-USDT", //交易对
                "price": "14", //委托价格
                "price_avg": "15", //成交均价
                "lever_rate": 10, //杠杆倍数
                "amount": "150", //委托数量
                "deal_amount": "100", //已成交
                "type": "buy-limit", //委托类型
                "status": 3, //1=挂单中,2=部分成交,3=已成交,4=撤销中,5=部分撤销,6=已撤销
                "contract_type": "close", //close平仓
                "profit": "10" //总盈亏
            },
            {
                "order_id": "11533", //订单号
                "ctime": 1576746253, //委托时间
                "symbol": "EOS-USDT", //交易对
                "price": "14", //委托价格
                "price_avg": "15", //成交均价
                "lever_rate": 10, //杠杆倍数
                "amount": "150", //委托数量
                "deal_amount": "100", //已成交
                "type": "buy-limit", //委托类型
                "status": 3, //1=挂单中,2=部分成交,3=已成交,4=撤销中,5=部分撤销,6=已撤销
                "contract_type": "close", //close平仓 
                "profit": "10" //总盈亏
            }
        ]
    }
}