# 获取晨星研究报告

get_research_morningstar_report(code)

  • 介绍

    获取指定股票的晨星研究报告,包含星级评分、公允价值、护城河、不确定性、财务健康、资本配置、多空观点、分析师观点等

  • 参数

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

    参数 类型 说明
    ret RET_CODE 接口调用结果
    data dict 当 ret == RET_OK,返回晨星研究报告数据字典
    str 当 ret != RET_OK,返回错误描述
    • 返回字典包含以下字段:

      字段 类型 说明
      rating_type MorningstarRatingType 评级类型
      star_rating int 晨星星级
      star_update_time int 星级更新时间戳(秒,对应市场时区)
      star_update_time_str str 星级更新日期
      fair_value float 公允价值
      fair_value_content dict 公允价值分析,见 StringWithUpdateTime 字段表
      economic_moat_label str 护城河评级
      economic_moat_content dict 护城河分析,见 StringWithUpdateTime 字段表
      uncertainty_label str 不确定性评级
      uncertainty_content dict 不确定性分析,见 StringWithUpdateTime 字段表
      financial_health_label str 财务健康评级
      financial_health_content dict 财务健康分析,见 StringWithUpdateTime 字段表
      analyst_report_by_line list 分析师署名列表
      analyst_report_update_time int 分析师报告更新时间戳(秒,对应市场时区)
      analyst_report_update_time_str str 分析师报告更新日期
      bull_say list 多方观点列表,每项见 StringWithUpdateTime 字段表
      bear_say list 空方观点列表,每项见 StringWithUpdateTime 字段表
      capital_allocation_label str 资本配置评级
      capital_allocation_content dict 资本配置分析,见 StringWithUpdateTime 字段表
      analyst_note_title dict 分析师观点标题,见 StringWithUpdateTime 字段表
      analyst_note_content dict 分析师观点内容,见 StringWithUpdateTime 字段表
      investment_thesis_content dict 投资论点,见 StringWithUpdateTime 字段表
      fundamentals_content dict 基本面报告,见 StringWithUpdateTime 字段表
      valuation_content dict 估值报告,见 StringWithUpdateTime 字段表
      pdf_url str PDF 报告下载链接
    • StringWithUpdateTime 字段(嵌套文本结构):

      字段 类型 说明
      context str 文本内容
      update_time int 更新时间戳(秒,对应市场时区)
      update_time_str str 更新日期
  • Example

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

ret, data = quote_ctx.get_research_morningstar_report("HK.00700")
if ret == RET_OK:
    print(json.dumps(data, indent=2, ensure_ascii=False))
else:
    print('error:', data)
quote_ctx.close()
1
2
3
4
5
6
7
8
9
10
  • Output
{
  "rating_type": 2,
  "star_rating": 4,
  "star_update_time": 1778257800,
  "star_update_time_str": "2026-05-09",
  "fair_value": 800.0,
  "fair_value_content": {
    "context": "我们对腾讯控股的每股公平价值估计为800港元。我们的估值中约85%来自于腾讯的核心业务,而...
    "update_time": 1755138060,
    "update_time_str": "2025-08-14"
  },
  "economic_moat_label": "宽",
  "economic_moat_content": {
    "context": "腾讯的宽护城河主要基于其庞大用户群的网络效应。此外,腾讯还拥有无形资产、成本优势和...
    "update_time": 1766457150,
    "update_time_str": "2025-12-23"
  },
  "uncertainty_label": "较高",
  "uncertainty_content": {
    "context": "由于监管风险及其核心业务的竞争强度,我们对腾讯的晨星不确定性评级为高。\n\n在支付领域,...
    "update_time": 1766457180,
    "update_time_str": "2025-12-23"
  },
  //...
 }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

接口限制

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