跳轉至

歷史委託

地址: 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" //總盈虧
            }
        ]
    }
}