經紀商每日持倉歷史
獲取某一經紀商在港股上市證券中的每日持倉歷史記錄。
SDK Links
Parameters
SDK 方法參數。
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | 是 | 港股代碼,例如 700.HK |
| broker_id | string | 是 | 經紀商參與者 ID,例如 B01224 |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"list": [
{
"date": "2026.05.13",
"holding": "22903430",
"chg": "7029132.0000",
"ratio": "0.0025"
},
{
"date": "2026.05.12",
"holding": "15874298",
"chg": "-2150000.0000",
"ratio": "0.0017"
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | 成功 | BrokerHoldingDailyResponse |
| 400 | 請求錯誤 | None |
Schemas
BrokerHoldingDailyHistoryResponse
| Name | Type | Required | Description |
|---|---|---|---|
| list | object[] | true | 每日持倉歷史紀錄, |
| ∟ date | string | true | 日期(如 2026.05.13) |
| ∟ holding | string | false | 總持股數 |
| ∟ chg | string | false | 日變動量 |
| ∟ ratio | string | false | 持倉比率 |

