Broker Holding Daily
Get daily holding history for a specific broker in an HK-listed security.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | HK security symbol, e.g. 700.HK |
| broker_id | string | YES | Broker participant ID, e.g. 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 | Success | BrokerHoldingDailyResponse |
| 400 | Bad request | None |
Schemas
BrokerHoldingDailyHistoryResponse
| Name | Type | Required | Description |
|---|---|---|---|
| list | object[] | true | Daily holding history records |
| ∟ date | string | true | Date (e.g. 2026.05.13) |
| ∟ holding | string | false | Total shares held |
| ∟ chg | string | false | Daily change in shares |
| ∟ ratio | string | false | Holding ratio |

