# 获取高管信息

get_company_executives(code)

  • 介绍

    获取指定股票的董事及高管列表,包含展示名称、姓名、职位、任职起始日、发布日期、性别、年龄、学历、年薪等信息

  • 参数

    参数 类型 说明
    code str 股票代码
  • 返回

    参数 类型 说明
    ret RET_CODE 接口调用结果
    data pd.DataFrame 当 ret == RET_OK,返回高管信息 DataFrame
    str 当 ret != RET_OK,返回错误描述
    • 返回 DataFrame 字段说明:

      字段 类型 说明
      display_leader_name str 展示名称
      leader_name str 高管姓名
      position_name str 职位名称
      begin_date int 任职起始日时间戳(秒)
      begin_date_str str 任职起始日
      leader_gender str 性别
      leader_age str 年龄
      highest_education str 最高学历
      annual_salary int 年薪
      issue_date int 发布日期时间戳(秒)
      issue_date_str str 发布日期
  • Example

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

ret, data = quote_ctx.get_company_executives("US.AAPL")
if ret == RET_OK:
    print(data[['display_leader_name', 'position_name', 'begin_date_str', 'annual_salary']].to_string(index=False))
    print('count:', len(data))
else:
    print('error:', data)
quote_ctx.close()
1
2
3
4
5
6
7
8
9
10
  • Output
display_leader_name                                                          position_name  begin_date_str  annual_salary
            Timothy D. Cook                                   Director and Chief Executive Officer             NaN     74294811.0
                 Sabih Khan                                                Chief Operating Officer             NaN     27031671.0
               Kevan Parekh                      Chief Financial Officer and Senior Vice President             NaN     22467309.0
                Ben Borders Principal Accounting Officer and Senior Director, Corporate Accounting             NaN            NaN
         Katherine L. Adams                                                  Senior Vice President             NaN     27032248.0
            Deirdre O'Brien                               Senior Vice President, Retail and People             NaN     27047633.0
       Jennifer G. Newstead                   Senior Vice President, General Counsel and Secretary             NaN            NaN
                John Ternus                            Senior Vice President, Hardware Engineering             NaN            NaN
Dr. Arthur D. Levinson, PhD                                                  Chairman of the Board             NaN       557231.0
            Susan L. Wagner                                                   Independent Director             NaN       445373.0
           Monica C. Lozano                                                   Independent Director             NaN       412956.0
                Andrea Jung                                                   Independent Director             NaN       458020.0
                Alex Gorsky                                                   Independent Director             NaN       416492.0
   Dr. Wanda M. Austin, PhD                                                   Independent Director             NaN       412850.0
        Dr. Ronald D. Sugar                                                   Independent Director             NaN       471283.0
count: 15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

接口限制

  • 每 30 秒内最多请求 30 次。
  • 支持正股及基金。