{% from "_macros.html" import pill, popover %} {% if not sig %}

No trade plan derived for this count set (none meeting min_confidence).

{% else %}

{% if sig.direction == "long" %} Enter near {{ sig.entry_price }}, stop below {{ sig.stop_price }}, first target {{ sig.target_price }}. {% else %} Enter near {{ sig.entry_price }}, stop above {{ sig.stop_price }}, first target {{ sig.target_price }}. {% endif %}

{% call popover("How we picked these levels", anchor="trade-plan") %}

Entry is the close at the most recent confirming pivot. Stop hugs the prior wave's structural low. Target uses the active count's fib extension by default; switch to fixed_R in Settings to use a multiple of the entry-to-stop distance instead.

direction{{ sig.direction|upper }}
entry{{ sig.entry_price }}
stop{{ sig.stop_price }}
target{{ sig.target_price }}
pattern{{ sig.count_pattern }} (W{{ sig.wave_label }})
R:R{{ "%.2f"|format(sig.rr) }}
{% endcall %}
Direction
{% if sig.direction == "long" %}{{ pill("LONG", "bull", dot=true) }} {% else %}{{ pill("SHORT", "bear", dot=true) }}{% endif %}
Entry
{{ sig.entry_price }}
Stop
{{ sig.stop_price }}
Target
{{ sig.target_price }}
R:R
{{ "%.2f"|format(sig.rr) }}
Bars to target
{{ sig.expected_bars_to_target }}
Max hold
{{ sig.max_holding_bars }}
Pattern
{{ sig.count_pattern }} (W{{ sig.wave_label }})
{% endif %}