# 財報期權篩選

get_option_earnings_screener(market, sort_type=None, is_asc=None, count=None, page=None, filter_list=None)

  • 介紹

    獲取即將發佈財報的期權標的列表,返回標的波動率數據、歷史財報 IV Crush、股價變動及市場預期等信息,幫助用戶在財報季進行期權交易決策。

  • 參數

    參數 類型 說明
    market OptionMarket 期權市場類型
    sort_type EarningsSortType 排序類型
    is_asc bool 是否升序
    count int 每頁數量
    page str 分頁遊標
    filter_list list[EarningsFilter] 篩選條件列表
  • 返回

    參數 類型 說明
    ret RET_CODE 接口調用結果
    data dict 當 ret == RET_OK,返回字典,包含 item_list(DataFrame)、next_page(str)、update_timestamp(float)、all_count(int)
    str 當 ret != RET_OK,返回錯誤描述
    • 返回 DataFrame 字段:

      字段 類型 說明
      owner str 標的股票代碼
      name str 標的名稱
      price float 標的當前價格
      change_ratio float 漲跌幅(小數)
      market_cap float 市值
      iv float 隱含波動率(百分比)
      iv_rank float IV 等級(百分比)
      iv_percentile float IV 百分位(百分比)
      hv float 歷史波動率(百分比)
      volume int 期權成交量
      open_interest int 期權持倉量
      earnings_timestamp float 財報日期時間戳(Unix 秒)
      earnings_time str 財報日期字符串(yyyy-MM-dd)
      earnings_pub_type str 財報發佈類型(BEFORE=盤前/AFTER=盤後)
      earnings_quarter str 財報季度(如 '2025Q1')
      last_report_iv_crush float 上次財報 IV Crush(百分比)
      history_report_iv_crush float 歷史平均財報 IV Crush(百分比)
      last_report_chg_ratio float 上次財報後股價變動(小數)
      history_report_chg_ratio float 歷史平均財報後股價變動(小數)
      estimate_eps_yoy float 預估 EPS 同比增長(百分比)
      estimate_revenue_yoy float 預估營收同比增長(百分比)
      expected_move_ratio float 期權隱含預期變動幅度(百分比)
  • Example

from futu import *

quote_ctx = OpenQuoteContext(host='127.0.0.1', port=11111)

ret, data = quote_ctx.get_option_earnings_screener(
    market=OptionMarket.US_SECURITY,
    count=5
)
if ret == RET_OK:
    print(data['item_list'])
    print('all_count:', data['all_count'])
else:
    print('error:', data)

quote_ctx.close()
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  • Output
     owner                           name  price  change_ratio    market_cap       iv  iv_rank  iv_percentile      hv  volume  open_interest  earnings_timestamp earnings_time earnings_pub_type earnings_quarter  last_report_iv_crush  history_report_iv_crush  last_report_chg_ratio  history_report_chg_ratio  estimate_eps_yoy  estimate_revenue_yoy  expected_move_ratio
0   US.CGC                  Canopy Growth   1.00        -0.990  4.220190e+08  204.207   36.550         88.492  39.545    8131         328382        1.781496e+09    2026-06-15            BEFORE           2026Q4               -21.308                   11.782                  1.851                    12.761            94.055                14.340               12.500
1  US.PLAY  Dave & Buster's Entertainment  12.93        -1.896  4.491805e+08  114.030   99.492         99.603  62.390    3052          44247        1.781496e+09    2026-06-15             AFTER           2027Q1                22.640                   26.059                 16.066                    15.892            -3.758                 1.881               15.409
2  US.DOMO                       Domo Inc   3.02         2.027  1.363547e+08  165.563   72.093         96.825  90.389    1970          29748        1.781496e+09    2026-06-15             AFTER           2027Q1                23.532                   30.013                 13.470                    19.203             9.622                -0.451               30.629
3  US.CMTL                       Comverse   4.83         5.228  1.436158e+08  388.934   81.297         98.412 106.150     218          13434        1.781496e+09    2026-06-15            BEFORE           2026Q3               154.978                   51.309                -24.536                    16.278           -10.204               -13.078               23.809
4  US.RFIL                  RF Industries  18.75         0.969  2.027675e+08  100.939   11.123         54.365  83.526     215           2044        1.781496e+09    2026-06-15             AFTER           2026Q2               -14.722                    6.537                 12.318                    12.013           200.000                 3.997               15.466
all_count: 292
1
2
3
4
5
6
7

接口限制

  • 30 秒內最多請求 60 次財報期權篩選接口(支持分頁的接口,僅首次調用納入統計)