{% extends "base.html" %} {% load static %} {% block title %}回测管理{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
| 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" }} | |