{% if sample_trades %}
Preview · first {{ sample_trades|length }} of {{ total_parsed }} trade{{ "s" if total_parsed != 1 else "" }}
{% for t in sample_trades %} {% endfor %}
Date Action Ticker Qty Amount
{{ t.date }} {{ t.action }} {{ t.ticker }} {{ "%g"|format(t.quantity) }} {{ "%.2f"|format(t.proceeds if t.proceeds is not none else (t.cost_basis if t.cost_basis is not none else 0.0)) }}
{% endif %}