{% extends "audit/base.html" %} {% load audit_filters %} {% block title %}归因报告列表 - 审计模块{% endblock %} {% block extra_css %} {{ block.super }} {% endblock %} {% block page_subtitle %}

归因分析报告列表

{% endblock %} {% block header_actions %} 返回首页 {% endblock %} {% block audit_content %}
{{ total_count }}
报告总数
{{ reports|length }}
当前显示
{% if reports %} {{ reports.0.created_at|date:"m/d" }} {% else %} - {% endif %}
最近生成
归因方法: 全部 启发式 Brinson
{% for report in reports %}

{{ report.backtest.name|default:report.backtest_id }} {{ report.get_attribution_method_display }}

{{ report.period_start|date:"Y-m-d" }} ~ {{ report.period_end|date:"Y-m-d" }} 生成于 {{ report.created_at|date:"Y-m-d H:i" }}
{{ report.total_pnl|percentage:2 }}
总收益
{{ report.regime_timing_pnl|percentage:2 }}
择时贡献
{{ report.regime_accuracy|floatformat:1 }}%
准确率
查看详情
{% empty %}
📊

暂无归因报告

{% endfor %}
{% csrf_token %} {% endblock %} {% block audit_js %} {% endblock %}