# 獲取內部人持股列表

get_insider_holder_list(code, next_key=None, num=None)

  • 介紹

    獲取美股股票內部人(高管/董事/大股東)的持股列表,支援分頁拉取;首頁額外返回內部人統計摘要

  • 參數

    參數 類型 說明
    code str 股票代碼
    next_key str 分頁標識
    num int 每頁數量
  • 返回

    參數 類型 說明
    ret RET_CODE 接口調用結果
    data pd.DataFrame 當 ret == RET_OK,返回內部人持股 DataFrame
    str 當 ret != RET_OK,返回錯誤描述
    • 返回 DataFrame 欄位說明:

      欄位 類型 說明
      holder_id int 股東 ID
      holder_quantity int 總持股數
      holder_pct float 持股比例
      name str 股東名稱
      title str 股東職位
      all_count int 總條數
      next_key str 分頁標識
      insider_total_count int 內部人總人數
      insider_bought_count int 買入人數
      insider_sold_count int 賣出人數
  • Example

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

ret, data = quote_ctx.get_insider_holder_list("US.AAPL")
if ret == RET_OK:
    print(data[['holder_id', 'name', 'title', 'holder_quantity', 'holder_pct']].to_string(index=False))
    print('insider_total:', data['insider_total_count'].iloc[0])
    print('next_key:', data['next_key'].iloc[0])
else:
    print('error:', data)
quote_ctx.close()
1
2
3
4
5
6
7
8
9
10
11
  • Output
holder_id             name                                 title  holder_quantity  holder_pct
    234085  Arthur Levinson Independent Non-Executive Chairperson          4125576       0.028
    169600     Timothy Cook               Chief Executive Officer          3280418       0.022
 626415138       Sabih Khan                               Officer          1105527       0.007
  34123508 Katherine  Adams                 Senior Vice President           175408       0.001
 531640091  Deirdre O’Brien       Senior Vice President of Retail           136810       0.000
    285767     Ronald Sugar                  Independent Director           110566       0.000
  50035778     Luca Maestri               Chief Financial Officer            91304       0.000
    253136      Andrea Jung                  Independent Director            77664       0.000
  22072913     Susan Wagner                  Independent Director            69788       0.000
1976351584      Ben Borders          Principal Accounting Officer            39987       0.000
insider_total: 17
next_key: 10
1
2
3
4
5
6
7
8
9
10
11
12
13

接口限制

  • 每 30 秒內最多請求 30 次。
  • 僅美股正股及基金有意義。
  • 支援分頁,預設每頁 10 條,最多 20 條;分頁標識為字符串類型。
  • 僅首頁(首次請求,nextKey 為空)額外返回內部人統計摘要(總人數/買入人數/賣出人數)。