{% extends "web/base.html" %} {% block title %}Strategies | tcx{% endblock %} {% block page_label %}Strategies{% endblock %} {% block content %} {% if strategy_mode == "detail" %}
Back to list
{% endif %} {% if strategy_mode == "detail" and selected_strategy %}
Strategy rules

{{ selected_strategy.heading }}

Fixed judgment guide This strategy can guide evidence, setup, sizing context, and block conditions, but it does not approve orders, execute trades, or change policy.
{% if strategy_preview.metadata_items %}
Strategy details
{% for item in strategy_preview.metadata_items %}
{{ item.label }}
{{ item.value }}
{% endfor %}
{% endif %}
{{ strategy_preview.html|safe }}
{% else %}
Library

{{ strategies|length }} strategies

Strategies are fixed, user-approved judgment guides. Create or update them through the Codex strategy workflow; they never grant approval or execution authority.

{% for strategy in strategies %} {% empty %}
No strategies
{% endfor %}
{% endif %} {% endblock %}