{{ asset.name }}
{% endif %}All amounts are aggregated and converted to your base currency ({{ base_currency }}).
| id | Date | Ticker | Exchange | Currency | FX | Type | Quantity | Price | Fees | Proceeds | Note | |||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ trade.id }} | {{ trade.date_display }} | {{ trade.ticker }} | {{ exchange_names[trade.exchange] }} | {{ trade.currency }} {{ currency_icons[trade.currency] }} | {{ trade.fx or '' }} | {% if trade.type == 'BUY' %}{{ trade.type }} | {% elif trade.type == 'SELL' %}{{ trade.type }} | {% else %}{{ trade.type }} | {% endif %}{{ trade.quantity }} | {{ trade.price }} | {{ trade.fees }} | {% if trade.type == 'BUY' %}{{ "{:,.2f}".format((trade.price * -trade.quantity - trade.fees) | round(2)) }} | {% elif trade.type == 'SELL' %}{{ "{:,.2f}".format(trade.price * trade.quantity - trade.fees | round(2)) }} | {% else %}{{ "{:,.2f}".format(trade.price * -trade.quantity - trade.fees | round(2)) }} | {% endif %}{{ trade.note or '' }} | Edit |
| id | Date | Ticker | Exchange | Currency | FX | Amount | Tax Credit | Fees | Total | Note | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ income.id }} | {{ income.date_display }} | {{ income.ticker }} | {{ exchange_names[income.exchange] }} | {{ income.currency }} {{ currency_icons[income.currency] }} | {{ income.fx or '' }} | {{ income.amount }} | {{ income.imputation }} | {{ income.fees }} | {{ "{:,.2f}".format((income.amount + income.imputation - income.fees) | round(2)) }} | {{ income.note or '' }} | Edit |