# 獲取高管資訊

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 次。
  • 支援正股及基金。