{% extends "hedge/base.html" %} {% load static %} {% block hedge_page_title %}对冲快照{% endblock %} {% block hedge_content %}
{{ stats.total_snapshots }}
总快照记录
{{ stats.unique_pairs }}
对冲对数量
{{ stats.rebalance_needed }}
需要调仓
{% for snapshot in snapshots %}
{{ snapshot.pair_name }} {{ snapshot.trade_date }} {% if snapshot.rebalance_needed %} 需要调仓 {% endif %}

权重配置

多头权重 {{ snapshot.long_weight }}%
对冲权重 {{ snapshot.hedge_weight }}%
对冲比例 {{ snapshot.hedge_ratio }}
目标比例 {{ snapshot.target_hedge_ratio }}

相关性指标

当前相关性 {{ snapshot.current_correlation }}
20日相关性 {{ snapshot.correlation_20d }}
60日相关性 {{ snapshot.correlation_60d }}

组合风险

组合Beta {{ snapshot.portfolio_beta }}
波动率 {{ snapshot.portfolio_volatility }}%
VaR {{ snapshot.value_at_risk }}%
最大回撤 {{ snapshot.max_drawdown }}%

收益表现

日收益率 {{ snapshot.daily_return }}%
未对冲收益 {{ snapshot.unhedged_return }}%
对冲部位收益 {{ snapshot.hedge_return }}%
对冲有效性 {{ snapshot.hedge_effectiveness }}%
{% if snapshot.rebalance_needed and snapshot.rebalance_reason %}
调仓原因: {{ snapshot.rebalance_reason }}
{% endif %}
{% endfor %}
{% if not snapshots %}
暂无快照记录
{% endif %} {% endblock %} {% block hedge_extra_js %} {% endblock %}