{{ name }}

{{ symbol }} · {{ market }} · 报告生成: {{ generated_at }}
{{ quote.price }} {{ change_sign }}{{ quote.change }} ({{ change_sign }}{{ quote.change_pct }}%)
{{ quote.open }} {{ quote.high }} {{ quote.low }} {{ cn_number(quote.volume) }}手 {{ quote.turnover }}% PE {{ quote.pe }} 来源: {{ quote.source }}
核心速览
现价 / PE
{{ quote.price }} PE {{ quote.pe }}
{% set cf = capital_flow %}
近5日主力净流入
{% if cf and cf.source != "all_failed" %}
{{ "%.2f"|format(cf.main_net_5d/1e8) }}亿
{% else %}
N/A
{% endif %}
机构共识
买入 {{ research.buy_count }} / 增持 {{ research.hold_count }} / 中性 {{ research.neutral_count }}
舆情热度
共 {{ total_posts }} 条
{% set _mc = quote.market_cap if quote.market_cap > 0 else 0 %} {% set _mf = financial.monetary_funds if financial.monetary_funds > 0 else 0 %} {% set _np = financial.net_profit if financial.net_profit > 0 else 0 %} {% set nc_pe = (_mc - _mf) / _np if _np > 0 else none %}
净现金调整 PE
{% if nc_pe is not none and nc_pe > 0 %}
{{ "%.1f"|format(nc_pe) }}x 市值−货币资金
{% else %}
N/A
{% endif %}
{% set _ks = kline.summary %} {% set _hi = _ks.get('period_high') if _ks else none %} {% set _lo = _ks.get('period_low') if _ks else none %} {% set _win = _ks.get('bar_count') if _ks else 0 %} {% set _amp = (_hi - _lo) / _lo * 100 if _hi and _lo and _lo > 0 else none %}
{% if _win %}{{ _win }}日振幅{% else %}区间振幅{% endif %}
{% if _amp is not none %}
{{ "%.1f"|format(_amp) }}%{% if _amp < 15 %} 极低波动{% endif %}
{% else %}
N/A
{% endif %}
⚠️ WARNING:本报告由 AI 自动生成,所有分析内容仅供参考,不构成任何投资建议。投资有风险,入市需谨慎。请基于自身情况独立做出投资决策。
{% if margin_of_safety_html %}
估值安全边际 · 情景卡片
{{ margin_of_safety_html|safe }}
{% endif %}
股债性价比信号灯
股息率
{% if equity_bond.dividend_yield is not none %}{{ "%.2f"|format(equity_bond.dividend_yield * 100) }}%{% else %}N/A{% endif %}
10Y 国债收益率
{{ "%.2f"|format(equity_bond.cgb_10y * 100) }}%
风险溢价
{% if equity_bond.yield_vs_cgb is not none %}{{ "+%.2f"|format(equity_bond.yield_vs_cgb * 100) }}%{% else %}N/A{% endif %}
FCF 覆盖分红
{% if equity_bond.fcf_cover is not none %}{{ "%.2f"|format(equity_bond.fcf_cover) }}x{% else %}N/A{% endif %}
{% if equity_bond.percentile is not none %} 当前股息率处于历史 {{ "%.0f"|format(equity_bond.percentile) }}% 分位(样本 {{ equity_bond.sample_years }} 年) · {% endif %} 信号:{{ equity_bond.signal }}
基本面 {% set conf = analysis.data_confidence.get('基本面', '中') %} {% if conf %}可信度{{ conf }}{% endif %}
{% set f = financial %} {% if f.report_period %}
数据来源: {{ f.report_period }}
营收
{{ "%.2f"|format(f.revenue/1e8) }} 亿
同比 {{ "%.2f"|format(f.revenue_yoy) }}%
净利润
{{ "%.2f"|format(f.net_profit/1e8) }} 亿
同比 {{ "%.2f"|format(f.net_profit_yoy) }}%
ROE
{{ "%.2f"|format(f.roe) }}%
EPS
{{ "%.2f"|format(f.eps) }}
{% if f.operating_cf %}
经营现金流 {{ "%.2f"|format(f.operating_cf/1e8) }}亿
{% endif %} {% else %}
财务数据暂不可用
{% endif %}
资金面 {% set conf = analysis.data_confidence.get('资金面', '中') %} {% if conf %}可信度{{ conf }}{% endif %}
{% set cf = capital_flow %} {% if cf and cf.source != "all_failed" %} {% macro yuan2yi(v) %}{{ "%.2f"|format(v/1e8) }}{% endmacro %} {% set mf_color = 'var(--red)' if cf.main_net_5d > 0 else ('var(--green)' if cf.main_net_5d < 0 else 'var(--amber)') %} {% if cf.northbound_hold_value != 0 %} {% endif %} {% if cf.lhb_date %} {% endif %}
近5日主力净流入{{ yuan2yi(cf.main_net_5d) }}亿
3日净流入{{ yuan2yi(cf.main_net_3d) }}亿
10日净流入{{ yuan2yi(cf.main_net_10d) }}亿
20日净流入{{ yuan2yi(cf.main_net_20d) }}亿
北向持股市值{{ yuan2yi(cf.northbound_hold_value) }}亿
龙虎榜 ({{ cf.lhb_date }}){{ yuan2yi(cf.lhb_net_buy) }}亿
来源: {{ cf.source }}
{% else %}
资金面数据暂不可用
{% endif %}
{% if kline.bars %} {% set bars = kline.bars[-180:] if kline.bars | length > 180 else kline.bars %} {% set prices = bars | map(attribute='close') | list %} {% set hi = prices | max %} {% set lo = prices | min %} {% set cur = quote.price %} {% set window = bars | length %} {# 现价可能与 K 线不同源(行情源 vs K线源);若现价落在区间外,不套用超跌/超涨结论,显式提示数据待核 #} {% set out_of_range = (cur < lo or cur > hi) %} {% set raw_pct = ((cur - lo) / (hi - lo) * 100) if hi != lo else 50 %} {% set pct = raw_pct if raw_pct > 0 else 0 %} {% set pct = pct if pct < 100 else 100 %} {% set pct = pct | round(1) %} {% set pct_int = pct | int %} {% if out_of_range %} {% set gauge_color = 'var(--amber)' %} {% set gauge_label = '超出区间' %} {% elif pct < 20 %} {% set gauge_color = 'var(--green)' %} {% set gauge_label = '超跌' %} {% elif pct < 40 %} {% set gauge_color = '#34d399' %} {% set gauge_label = '偏低' %} {% elif pct < 60 %} {% set gauge_color = 'var(--amber)' %} {% set gauge_label = '中性' %} {% elif pct < 80 %} {% set gauge_color = '#fb923c' %} {% set gauge_label = '偏高' %} {% else %} {% set gauge_color = 'var(--red)' %} {% set gauge_label = '超涨' %} {% endif %}
股价估值百分位 {{ gauge_label }}{% if not out_of_range %} {{ pct }}%{% endif %}
{% if out_of_range %}—{% else %}{{ pct }}%{% endif %} {{ gauge_label }}
现价{{ cur }}
{{ window }}日最高{{ hi }}
{{ window }}日最低{{ lo }}
区间振幅{{ "%.1f"|format((hi - lo) / lo * 100) if lo > 0 else 0 }}%
{% if out_of_range %}
现价 {{ cur }} 超出近 {{ window }} 日 K 线区间 [{{ lo }}, {{ hi }}],可能为行情/K线数据不同源,估值百分位暂不适用。
{% endif %}
{% endif %}
{% if kline.bars %}
K线走势 (近{{ kline.bars|length }}日) {{ kline.source }}
{% endif %}
全网热度 共 {{ total_posts }} 条
全平台共 {{ total_posts }} 条相关讨论 {% if total_failed > 0 %} · {{ total_failed }} 个数据源暂不可用{% endif %}
{% if research.reports %}
机构研报 共 {{ research.total_count }} 份
买入 {{ research.buy_count }} 增持 {{ research.hold_count }} 中性 {{ research.neutral_count }} {% if research.avg_eps_this_yr %} 预测EPS {{ research.avg_eps_this_yr }} {% endif %} {% if research.avg_pe_this_yr %} 预测PE {{ research.avg_pe_this_yr }} {% endif %}
{% for r in research.reports %} {% endfor %}
日期 机构 评级 标题 当年EPS 次年EPS PDF
{{ r.date }} {{ r.institution }} {% set rating_color = 'var(--red)' if '买入' in r.rating else ('var(--amber)' if '增持' in r.rating or '推荐' in r.rating else 'var(--text-muted)') %} {{ r.rating }} {% if r.pdf_url %} {{ r.title }} {% else %} {{ r.title }} {% endif %} {{ r.eps_this_yr if r.eps_this_yr else '-' }} {{ r.eps_next_yr if r.eps_next_yr else '-' }} {% if r.pdf_url %}PDF{% endif %}
来源: {{ research.source }}
{% endif %}
AI 综合分析报告
{{ report_text|md_to_html|safe }}
数据底稿(系统预渲染 · 文末附录)
{% if data_appendix_md %}
以下表格由程序从原始数据直接渲染,未经大语言模型改写,作为 AI 正文的对照底稿(置于文末,正文引用见「见××表」)。
{{ data_appendix_md|md_to_html|safe }}
{% else %}
数据底稿未生成
  • 本次未产出系统预渲染的确定性对照表(可能为 mock/测试模式,或确定性数据层未成功采集)。
  • 此时 AI 正文中引用的「见××表」缺少对照底稿,请谨慎采信相关数字。
{% endif %}
{% if credibility %}
数据可信度
{% if credibility.skipped is defined %}
数据自检未执行:{{ credibility.skipped }}
{% else %}
{{ credibility.checked }}已程序化核对指标声明
{{ credibility.corrected }}自动修正数
上述已核指标中仍存疑: {% if credibility.uncertain %}
    {% for u in credibility.uncertain %}
  • {{ u }}
  • {% endfor %}
{% else %}
{% if credibility.financial_verified %} 财务明细类指标(净利润 / EPS / 货币资金 / 资本开支 / 分红 / 资产负债率 / 应收账款)已由代码确定性计算,并经数字对账;应收账款已与年报附注账龄表对齐。 {% else %} 财务明细类指标(净利润 / EPS / 货币资金 / 资本开支 / 分红 / 资产负债率)未经程序化逐项核对,下列数字请谨慎采信 {% endif %}
{% endif %}
核对范围:市盈率、市净率、ROE、营收、目标价等市场/估值类指标已做程序化数字对账; 资本开支、自由现金流、分红、货币资金、应收账款等财务明细由采集适配器确定性计算,与【财务健康扩展表】【年报附注表】一致。
{% endif %}
{% endif %}