# Get Shareholders Holding Changes

get_shareholders_holding_changes(code, next_key=None, num=None, sort_type=None, sort_column=None, filter_type=None)

  • Description

    Get shareholder holding change records for a stock, with pagination support

  • Parameters

    Parameter Type Description
    code str Stock code
    next_key str Pagination key
    num int Page size
    sort_type SortType Sort direction
    sort_column SortField Sort field
    filter_type HoldingChangesFilterType Filter type
  • Return

    Parameter Type Description
    ret RET_CODE API call result
    data pd.DataFrame When ret == RET_OK, returns holding changes DataFrame
    str When ret != RET_OK, returns error description
    • DataFrame field descriptions:

      Field Type Description
      period_text str Reporting period
      name str Holder name
      holder_id int Holder ID
      share_change_num int Share change number
      shares_change_price int Reference change amount
      share_ratio float Holding percentage
      holder_type str Holder type
      holder_type_id int Holder type ID
      holding_date_str str Holding date
      share_ratio_change float Holding change ratio
      share_num int Shares held
      next_key str Pagination key
  • Example

from futu import *
quote_ctx = OpenQuoteContext(host='127.0.0.1', port=11111)

ret, data = quote_ctx.get_shareholders_holding_changes("HK.00700")
if ret == RET_OK:
    print(data[['period_text', 'name', 'share_change_num', 'share_ratio', 'share_ratio_change']].to_string(index=False))
    print('next_key:', data['next_key'][0])
else:
    print('error:', data)
quote_ctx.close()
1
2
3
4
5
6
7
8
9
10
  • Output
period_text                                    name  share_change_num  share_ratio  share_ratio_change
    2026/Q1                               BlackRock           7971983        2.669               0.088
    2026/Q1           CSOP Asset Management Limited           6691695        0.192               0.074
    2026/Q1 Hang Seng Investment Management Limited           4870059        0.395               0.053
    2026/Q1                       GQG Partners, LLC           3289800        0.146               0.036
    2026/Q1                            The Vanguard           2837500        2.977               0.031
    2026/Q1     Pinebridge Investments Asia Limited           2316700        0.073               0.025
    2026/Q1                        Capital Research           2214900        0.948               0.024
    2026/Q1                        Australian Super           2214046        0.116               0.024
    2026/Q1 Mirae Asset Global Investments Co., Ltd           1852929        0.096               0.020
    2026/Q1                         Baillie Gifford           1831832        0.395               0.020
next_key: 10
1
2
3
4
5
6
7
8
9
10
11
12

API Limits

  • Max 30 requests per 30 seconds.
  • Supports HK stocks, US stocks and funds.