日度成交量
獲取美股期權的歷史每日認購/認沽成交量和未平倉量數據。
SDK Links
Parameters
SDK 方法參數。
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | Underlying US stock symbol, e.g. AAPL.US, TSLA.US |
| timestamp | integer | NO | Start Unix timestamp (seconds); 0 returns the most recent (default 0) |
| count | integer | NO | Number of trading days to return (default 30) |
Go SDK 使用
start/end日期區間(time.Time)而非timestamp/count。
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"symbol": "AAPL.US",
"stats": [
{
"symbol": "AAPL.US",
"date": "2026-05-07",
"call_volume": 284512,
"put_volume": 195830,
"call_open_interest": 1824500,
"put_open_interest": 1532100,
"total_volume": 480342,
"total_open_interest": 3356600,
"pc_vol": 0.6886,
"pc_oi": 0.8398
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | option_volume_daily_rsp |
| 400 | Bad request | None |
Schemas
option_volume_daily_rsp
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | true | Security symbol |
| stats | object[] | true | Daily volume records |
| ∟ symbol | string | true | Security symbol |
| ∟ date | string | true | Date in YYYY-MM-DD format |
| ∟ call_volume | int64 | true | Call volume on that day |
| ∟ put_volume | int64 | true | Put volume on that day |
| ∟ call_open_interest | int64 | true | Call open interest |
| ∟ put_open_interest | int64 | true | Put open interest |
| ∟ total_volume | int64 | true | Total options volume |
| ∟ total_open_interest | int64 | true | Total options open interest |
| ∟ pc_vol | float | true | Put/call volume ratio |
| ∟ pc_oi | float | true | Put/call open interest ratio |