# 获取内部人持股列表

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                         独立非执行主席          4125576       0.028
    169600     Timothy Cook                           首席执行官          3280418       0.022
 626415138       Sabih Khan                              高管          1105527       0.007
  34123508 Katherine  Adams                           高级副总裁           175408       0.001
 531640091  Deirdre O’Brien Senior Vice President of Retail           136810       0.000
    285767     Ronald Sugar                            独立董事           110566       0.000
  50035778     Luca Maestri                           首席财务官            91304       0.000
    253136      Andrea Jung                            独立董事            77664       0.000
  22072913     Susan Wagner                            独立董事            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 为空)额外返回内部人统计摘要(总人数/买入人数/卖出人数)。