# 獲取持股變動

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

  • 介紹

    獲取指定股票的持股變動記錄,支援分頁拉取

  • 參數

    參數 類型 說明
    code str 股票代碼
    next_key str 分頁標識
    num int 每頁數量
    sort_type SortType 排序方向
    sort_column SortField 排序欄位
    filter_type HoldingChangesFilterType 篩選類型
  • 返回

    參數 類型 說明
    ret RET_CODE 接口調用結果
    data pd.DataFrame 當 ret == RET_OK,返回持股變動記錄 DataFrame
    str 當 ret != RET_OK,返回錯誤描述
    • 返回 DataFrame 字段說明:

      字段 類型 說明
      period_text str 報告期
      name str 股東名稱
      holder_id int 股東 ID
      share_change_num int 持股變動數
      shares_change_price int 參考變動金額
      share_ratio float 持股比例
      holder_type str 持股性質
      holder_type_id int 持股性質 ID
      holding_date_str str 報告日期
      share_ratio_change float 變動比例
      share_num int 持股數
      next_key str 分頁標識
  • 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

接口限制

  • 每 30 秒內最多請求 30 次。
  • 支援港股、美股正股及基金。