{% extends "base.html" %} {% load static %} {% block title %}决策配额配置 - AgomTradePro{% endblock %} {% block extra_css %} {% endblock %} {% block content %} {% csrf_token %}

决策配额配置

配置和管理决策频率约束参数

返回配额概览
{% if error %}
{{ error }}
{% endif %}
{% for period_value, period_label in period_choices %}
{{ period_label }} {{ period_value }}
{% with current_quota=None %} {% for q in quotas %} {% if q.period == period_value %}
{{ q.used_decisions }}
已使用决策
{{ q.max_decisions }}
最大决策数
{{ q.used_executions }}
已执行
{{ q.max_execution_count }}
最大执行数
{% widthratio q.used_decisions q.max_decisions 100 as usage_pct %}
使用率: {{ usage_pct }}%
{% endif %} {% endfor %} {% endwith %} {% with has_quota=False %} {% for q in quotas %}{% if q.period == period_value %}{% with has_quota=True %}{% endwith %}{% endif %}{% endfor %} {% if not has_quota %}
0
已使用决策
10
最大决策数
0
已执行
5
最大执行数
{% endif %} {% endwith %}
{% endfor %}

配额使用趋势

每日决策使用量

每日执行使用量

-
平均每日决策
-
峰值决策数
-
平均每日执行
-
超限天数
{% endblock %}