{# Today tile (§4.1, §6.2 Overview NEW). Phase 3 ships value + percent.
Phase 4 adds the intraday sparkline. #}
TODAY
{% if today_change is not none %}
{% if today_change > 0 %}+{% endif %}{{ fmt_currency(today_change) }}
{% else %}
—
{% endif %}
{% if today_pct is not none %}
{% if today_pct > 0 %}+{% endif %}{{ "%.2f"|format((today_pct|float) * 100) }}%
{% else %}
no previous close
{% endif %}