{% extends "base.html" %} {% block title %}Alpha 推荐历史{% endblock %} {% block content %}

Alpha 推荐历史

支持按组合、阶段与来源回看历史候选和理由。

查看当前完整排名 返回首页

当前持仓退出链路

历史页也直接挂到当前的 SELL / REDUCE / HOLD 跟踪链路,可一键回到 Dashboard 右侧退出详情。

回到 Dashboard 右侧详情
{% if current_exit_watch_summary.total %}
立即处理 {{ current_exit_watch_summary.urgent_count|default:0 }} SELL {{ current_exit_watch_summary.sell_count|default:0 }} REDUCE {{ current_exit_watch_summary.reduce_count|default:0 }} HOLD {{ current_exit_watch_summary.hold_count|default:0 }}
{% endif %} {% if current_exit_watchlist %}
{% for item in current_exit_watchlist|slice:":3" %}
{{ item.asset_code }} {% if item.asset_name %}{{ item.asset_name }}{% endif %} {{ item.exit_action_label }} {{ item.priority_label }}
账户 {{ item.account_name }} 退出来源 {{ item.exit_source }} 决策侧 {{ item.decision_side_label }}
{{ item.exit_reason_text|default:"当前未触发退出动作。" }}
在 Dashboard 右侧查看 {% if item.recommendation_detail_url %} 推荐明细 API {% endif %} {% if item.transition_plan_detail_url %} 调仓计划 API {% endif %} 进入决策工作台
{% endfor %}
{% else %}
当前没有需要跟踪的持仓退出项。
{% endif %}
{% if history_runs %}
{% for run in history_runs %}
{{ run.trade_date }} {{ run.scope_label }}
来源 {{ run.source }} {{ run.provider_source }} {% if run.effective_asof_date %}评分日 {{ run.effective_asof_date }}{% endif %} {% if run.uses_cached_data %}缓存{% else %}实时优先{% endif %}
{% if run.cache_reason %}
{{ run.cache_reason }}
{% endif %}
打开 JSON
{% endfor %}
{% else %}
🗂️

暂无 Alpha 推荐历史。

{% endif %}
{% endblock %}