# 役員情報の取得

get_company_executives(code)

  • 説明

    指定した銘柄の取締役および役員リストを取得します。表示名、氏名、役職、就任開始日、公開日、性別、年齢、学歴、年俸などの情報が含まれます

  • パラメータ

    パラメータ 説明
    code str 銘柄コード
  • 戻り値

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

API制限

  • 30秒以内に最大30回のリクエストが可能です。
  • 個別株および投資信託に対応しています。