獲取當日訂單
該接口用於獲取當日訂單和訂單查詢。
SDK Links
Python |
Rust |
Go |
Node.js |
Request
HTTP Method | GET |
HTTP URL | /v1/trade/order/today |
Parameters
Content-Type: application/json; charset=utf-8
Name | Type | Required | Description |
---|---|---|---|
symbol | string | NO | 股票代碼,使用 ticker.region 格式,例如:AAPL.US |
status | string[] | NO | 訂單狀態 例如: status=FilledStatus&status=NewStatus |
side | string | NO | 買賣方向 可選值: Buy - 買入Sell - 賣出 |
market | string | NO | 市場 可選值: US - 美股HK - 港股 |
order_id | string | NO | 訂單 ID,用於指定訂單 ID 查詢,例如:701276261045858304 |
Request Example
from longport.openapi import TradeContext, Config, OrderStatus, OrderSide, Market
config = Config.from_env()
ctx = TradeContext(config)
resp = ctx.today_orders(
symbol = "700.HK",
status = [OrderStatus.Filled, OrderStatus.New],
side = OrderSide.Buy,
market = Market.HK,
)
print(resp)
Response
Response Headers
- Content-Type: application/json