{% extends "base.html" %} {% block head %} {{ fund_code }} {{ fund_name }} - 基金研究报告 {% endblock %} {% block header %} {{ super() }}
基金概况:{{ fund_name }}({{ fund_code }})| 类型:{{ fund_type }}| 成立日期:{{ found_date }}
{% endblock %} {% block content %}

一、核心绩效指标

{% for item in performance_metrics %} {% endfor %}
指标评价
{{ item.name }} {{ item.value | format_number }} {{ item.comment }}

二、风险指标

{% for item in risk_metrics %} {% endfor %}
风险指标
{{ item.name }} {{ item.value | format_number }}

三、资产配置

{% for item in asset_allocation %} {% endfor %}
资产类别占比
{{ item.name }} {{ item.ratio | percentage }}

四、前十大重仓股

{% for stock in top_holdings %} {% endfor %}
序号股票代码股票名称持仓占比
{{ loop.index }} {{ stock.code }} {{ stock.name }} {{ stock.proportion | percentage }}
{% if ai_analysis %}

五、AI 分析摘要

{{ ai_analysis }}
{% endif %} {% endblock %}