{% if not quotes %}
| Symbol | Label | Price | Ccy | 1d | 1m | 1y | {% if has_anchor %}anchor | {% endif %}as-of |
|---|---|---|---|---|---|---|---|---|
| {{ q.symbol }} | {{ q.label or "" }} | {{ q.price | price }} | {{ q.currency or "" }} | {% for k in ["1d","1m","1y"] %} {% set v = q.changes.get(k) if q.changes else None %}{% if v is none %}—{% else %}{{ "%+.2f"|format(v) }}%{% endif %} | {% endfor %} {% if has_anchor %} {% set va = q.changes.get('anchor') if q.changes else None %}{% if va is none %}—{% else %}{{ "%+.2f"|format(va) }}%{% endif %} | {% endif %}{{ q.as_of or "" }} |