{% extends "base.html" %} {% load static %} {% load dashboard_tags %} {% block title %}AgomTradePro - 投资指挥中心{% endblock %} {% block extra_css %} {% endblock %} {% block content %} {{ alpha_provider_status|json_script:"providerData" }} {{ alpha_ic_trends|json_script:"icTrendsData" }} {{ browser_notification_payload|json_script:"browserNotificationPayload" }}

欢迎回来,{{ display_name|default:user.username }}

AgomTradePro 战略资产配置框架 - 投资指挥中心

🧭 发起新决策
{% include "components/regime_status_bar.html" %}
{% include "components/attention_items.html" %} {% include "components/action_recommendation.html" %}
{% include "components/pulse_card.html" %}
{% include "components/market_thermometer_card.html" %}
{% include "dashboard/main_workflow_panel.html" %}
📊 PMI (增长)
{{ pmi_value|default:"-"|floatformat:1 }}
📈 CPI (通胀)
{{ cpi_value|default:"-"|floatformat:1 }}%
🎯 置信度
{{ regime_confidence_pct|default:0|floatformat:0 }}%
💼 持仓数量
{{ position_count|default:0 }}
{% if regime_warnings %}
Regime 数据告警({{ regime_data_health }})
    {% for warning in regime_warnings %}
  • {{ warning }}
  • {% endfor %}
{% endif %}

🎯 决策模式状态

进入决策模式 →
🚪 Beta 闸门 进入步骤 →
可见资产类别 {{ beta_gate_visible_classes|default:"-" }}
Alpha 面板 进入步骤 →
{{ alpha_watch_count|default:0 }} 观察
{{ alpha_candidate_count|default:0 }} 候选
{{ alpha_actionable_count|default:0 }} 可行动
⏱️ 决策配额 进入步骤 →
本期配额 {{ quota_total|default:0 }}
已占用 {{ quota_used|default:0 }}
剩余额度 {{ quota_remaining|default:0 }}

🤖 Alpha 排名

首页不再加载 Alpha 排行数据;完整排名、scope、组合、股票池模式和返回条数在专门页调整。

🏷️
当前口径
{% if selected_alpha_scope == 'general' %}通用{% else %}账户{% endif %}
进入完整排名页后加载
📊
首页加载
已关闭
排行数据不阻塞首屏
完整排名
入口
集中查看 Alpha 结果
🛡️
推荐历史
入口
查看历史快照

完整 Alpha 排名

专门页面

Alpha 排行已从首页移除,避免账户级股票池、评分缓存和退出链路阻塞首页打开。

相关入口

快速操作
股票池模式 {{ selected_alpha_pool_mode|default:"默认" }} 推荐历史 在历史页查看 个股筛选 在筛选页使用 Alpha 来源

Regime 象限

查看详情 →
增长 ↑
复苏
{{ regime_distribution.Recovery|default:"0.00"|floatformat:2 }}
高增低胀
过热
{{ regime_distribution.Overheat|default:"0.00"|floatformat:2 }}
双高
通缩
{{ regime_distribution.Deflation|default:"0.00"|floatformat:2 }}
双低
滞胀
{{ regime_distribution.Stagflation|default:"0.00"|floatformat:2 }}
低增高胀
{% if allocation_advice %}

🎯 资产配置建议

{{ allocation_advice.risk_profile_display }}
{% include 'components/investment_disclaimer.html' %}

当前配置

{% for asset_class, value in allocation_advice.current_allocation.items %}
{% if asset_class == 'equity' %}权益{% elif asset_class == 'fixed_income' %}债券{% elif asset_class == 'commodity' %}商品{% elif asset_class == 'cash' %}现金{% else %}{{ asset_class }}{% endif %}
{{ value|floatformat:1 }}%
{% endfor %}

目标配置

{% for asset_class, value in allocation_advice.target_allocation.items %}
{% if asset_class == 'equity' %}权益{% elif asset_class == 'fixed_income' %}债券{% elif asset_class == 'commodity' %}商品{% elif asset_class == 'cash' %}现金{% else %}{{ asset_class }}{% endif %}
{{ value }}%
{% endfor %}

{{ allocation_advice.summary }}

{% if allocation_advice.expected_return %}
预期年化: {{ allocation_advice.expected_return|floatformat:1 }}% 预期波动: {{ allocation_advice.expected_volatility|floatformat:1 }}% 夏普比率: {{ allocation_advice.sharpe_ratio|floatformat:2 }}
{% endif %}
{% if allocation_advice.trade_actions %}

具体操作建议

{% for action in allocation_advice.trade_actions %}
{{ action.action|upper }}
{{ action.asset_code }} {{ action.asset_name }} ¥{{ action.amount|floatformat:0 }}
{{ action.reason }}
{% endfor %}
{% endif %}
{% endif %}

当前持仓

管理 →
{% include 'dashboard/partials/positions_table.html' with positions=positions show_account=True %}

活跃信号

全部 →
{% if active_signals %}
{% for signal in active_signals|slice:":5" %}
{{ signal.asset_code }} {{ signal.asset_name }} {{ signal.direction }}

{{ signal.logic_desc|truncatewords:12 }}

{% endfor %}
{% else %}
📊

暂无活跃信号

{% endif %}
图表账户:

资产配置

收益趋势

系统状态

📊
宏观数据
{% if regime_data_health %} 数据采集正常 {% else %} 数据不足或待刷新 {% endif %}
🎯
Regime 引擎
{% if current_regime and regime_data_health %} {{ current_regime }} 已更新 {% elif current_regime %} {{ current_regime }},数据待确认 {% else %} 等待有效宏观数据 {% endif %}
📰
政策/情绪/热点
{% if current_policy_level %} 政策档位 {{ current_policy_level }} {% elif active_signals %} {{ active_signals|length }} 条信号待复核 {% else %} 暂无最新事件 {% endif %}
🤖
AI 助手
{% if ai_insights %} 本地规则已生成 {% else %} 未生成建议 {% endif %}
🧠
Qlib AI 可选
检测中...
{% include "dashboard/teaching_modal.html" %} {% endblock %} {% block extra_js %} {% endblock %}