跳到主要內容

獲取歷史成交明細

該接口用於獲取歷史訂單的成交明細。

SDK Links

Python
longport.openapi.TradeContext.history_executions
Rust
longport::trade::TradeContext#history_executions
Go
TradeContext.HistoryExecutions
Node.js
TradeContext#historyExecutions

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成交價格