{% extends "base.html" %} {% load static %} {% block title %}回测管理{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

回测管理

统计概览

总回测数 {{ stats.total }}
已完成 {{ stats.by_status.completed.count|default:0 }}
运行中 {{ stats.by_status.running.count|default:0 }}
平均收益率 {{ stats.avg_return|floatformat:2 }}%

回测列表

{% for backtest in backtests %} {% empty %} {% endfor %}
ID 名称 状态 时间范围 收益率 年化收益 创建时间 操作
{{ backtest.id }} {{ backtest.name }} {% if backtest.status == 'completed' %}已完成 {% elif backtest.status == 'running' %}运行中 {% elif backtest.status == 'pending' %}待处理 {% else %}失败 {% endif %} {{ backtest.start_date|date:"Y-m-d" }} ~ {{ backtest.end_date|date:"Y-m-d" }} {% if backtest.total_return is not None %} {{ backtest.total_return|floatformat:2 }}% {% else %} - {% endif %} {% if backtest.annualized_return is not None %} {{ backtest.annualized_return|floatformat:2 }}% {% else %} - {% endif %} {{ backtest.created_at|date:"Y-m-d H:i" }}
查看 {% if backtest.status == 'completed' %} {% endif %}

暂无回测记录

创建第一个回测
{% endblock %}