跳到主要內容

获取历史成交明细

该接口用于获取历史订单的成交明细

Request

HTTP MethodGET
HTTP URL/v1/trade/execution/history

Parameters

Content-Type: application/json; charset=utf-8

NameTypeRequiredDescription
symbolstringNO股票代码,使用 ticker.region 格式,例如:AAPL.US
start_atstringNO开始时间,格式为时间戳 (秒),例如:1650410999

开始时间为空时,默认为结束时间或当前时间前九十天。
end_atstringNO结束时间,格式为时间戳 (秒),例如:1650410999

结束时间为空时,默认为开始时间后九十天或当前时间。

Request Example

from datetime import datetime
from longport.openapi import TradeContext, Config

config = Config.from_env()
ctx = TradeContext(config)

resp = ctx.history_executions(
symbol = "700.HK",
start_at = datetime(2022, 5, 9),
end_at = datetime(2022, 5, 12),
)
print(resp)

Response

Response Headers

  • Content-Type: application/json

Response Example

{
"code": 0,
"message": "success",
"data": {
"has_more": false,
"trades": [
{
"order_id": "693664675163312128",
"price": "388",
"quantity": "100",
"symbol": "700.HK",
"trade_done_at": "1648611351",
"trade_id": "693664675163312128-1648611351433741210"
}
]
}
}

Response Status

StatusDescriptionSchema
200查询成功history_executions_rsp
400查询失败,请求参数错误。None

Schemas

history_executions_rsp

NameTypeRequiredDescription
has_morebooleantrue是否还有更多数据。

每次查询最大订单数量为 1000,如果查询结果数量超过 1000,那么 has_more 就会为 true
tradesobject[]false成交明细信息
∟ order_idstringtrue订单 ID
∟ trade_idstringtrue成交 ID
∟ symbolstringtrue股票代码,使用 ticker.region 格式,例如:AAPL.US
∟ trade_done_atstringtrue成交时间,格式为时间戳 (秒)
∟ quantitystringtrue成交数量
∟ pricestringtrue成交价格