# インサイダー保有株式リストの取得

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

  • 説明

    米国株のインサイダー(役員/取締役/主要株主)の保有株式リストを取得します。ページングに対応しており、初回リクエスト時にはインサイダー統計サマリーも返されます。

  • パラメータ

    パラメータ 説明
    code str 銘柄コード
    next_key str ページングキー
    num int 1ページあたりの件数
  • 戻り値

    パラメータ 説明
    ret RET_CODE API 呼び出し結果
    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 moomoo 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

API 制限

  • 30 秒間に最大 30 リクエスト。
  • 米国株の普通株およびファンドのみ対応。
  • ページングに対応;デフォルト 1 ページあたり 10 件、最大 20 件;ページングキーは文字列型。
  • インサイダー統計サマリー(総人数/買い増し人数/売却人数)は初回ページ(nextKey が空の場合)のみ返される。