{% extends "base.html" %} {% block content %}
所选日期
{{ selected_date or 'N/A' }}
样本数
{{ rows|length }}
预测上涨
{{ up_count }}
预测下跌
{{ down_count }}

预测结果

展示所有历史预测记录。当前时间字段仅保留交易日期,数据频率统一为腾讯财经日线。

{% for header in headers %} {% endfor %} {% for row in rows %} {% for header in headers %} {% endfor %} {% endfor %}
{{ header }}
{% if header == "预测结果" %} {{ row[header] }} {% else %} {{ row[header] }} {% endif %}
{% endblock %}