经纪商每日持仓历史
获取某一经纪商在港股上市证券中的每日持仓历史记录。
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 | 持仓比率 |

