# 獲取晨星研究報告

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": "Our fair value estimate for Tencent is HKD 800 per share. About 85% of our valuation comes from Tencent’s core business, while ...
    "update_time": 1755138060,
    "update_time_str": "2025-08-14"
  },
  "economic_moat_label": "Wide",
  "economic_moat_content": {
    "context": "Tencent's wide moat is primarily based on network effects around its massive user base. In addition, Tencent possesses ...
    "update_time": 1766457150,
    "update_time_str": "2025-12-23"
  },
  "uncertainty_label": "High",
  "uncertainty_content": {
    "context": "Our Morningstar Uncertainty Rating for Tencent is High due to regulatory risks and competitive intensity across...
    "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。