{% extends "rotation/base.html" %} {% load static %} {% block rotation_content %}

账户轮动配置

📅 {{ current_date|date:"Y-m-d" }} 查看全局模板

为每个投资组合账户独立配置风险偏好和各宏观象限的资产权重,配置互相独立,互不影响。

{% if not user_accounts %}
📂

暂无投资组合账户

前往创建账户
{% else %}
{% for account in user_accounts %}
{% if account.rotation_config and account.rotation_config.regime_allocations %}
{% for regime, allocs in account.rotation_config.regime_allocations.items %} {{ regime }} · {{ allocs|length }} 资产 {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% endblock %}