# 获取财报日前后价格涨跌幅表现

get_financials_earnings_price_move(code, period_count=None)

  • 介绍

    获取财报日前后价格涨跌幅表现

  • 参数

    参数 类型 说明
    code str 股票代码
    period_count int 财报周期数量
  • 返回

    参数 类型 说明
    ret RET_CODE 接口调用结果
    data pd.DataFrame 当 ret == RET_OK,返回按交易日展开的明细数据
    str 当 ret != RET_OK,返回错误描述
    • 返回数据按交易日平铺,每行同时包含财报元信息与当日行情:

      字段 类型 说明
      fiscal_year int 财务年度
      financial_type F10Type 财报类型
      period_text str 财报周期
      pub_trading_day_str str 财报发布对应交易日
      pub_type EarningsPubTimeType 财报发布时间类型
      price_info_index int 财报发布当日在本期行情列表中的下标
      day_offset int 距财报发布日偏移天数
      trading_day_str str 交易日
      close_price float 收盘价
      open_price float 开盘价
      highest_price float 最高价
      lowest_price float 最低价
      last_close_price float 昨收价
      option_iv float 期权隐含波动率
      option_hv float 期权历史波动率
  • Example

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

ret, data = quote_ctx.get_financials_earnings_price_move("HK.00700", period_count=2)
if ret == RET_OK:
    print(data)
    print(data['period_text'][0])
else:
    print('error:', data)
quote_ctx.close()
1
2
3
4
5
6
7
8
9
10
  • Output
fiscal_year  financial_type  ... option_iv  option_hv
0          2026               1  ...    31.829     32.220
1          2026               1  ...    33.173     33.720
2          2026               1  ...    32.963     30.355
3          2026               1  ...       NaN        NaN
4          2025               4  ...    35.804     37.891
5          2025               4  ...    35.845     37.478
6          2025               4  ...    38.504     37.580
7          2025               4  ...    35.518     38.175
8          2025               4  ...    34.739     37.446
9          2025               4  ...    34.248     37.558
10         2025               4  ...    31.682     44.855
11         2025               4  ...    30.907     43.536
12         2025               4  ...    34.614     43.426
13         2025               4  ...    33.617     44.177
14         2025               4  ...    34.503     42.810

[15 rows x 17 columns]
2026/Q1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

接口限制

  • 每 30 秒内最多请求 30 次。
  • 仅支持港股、美股正股。