{% extends "layout.html" %} {% block title %}Trade Log — IBKR Dashboard{% endblock %} {% block content %}

Trade Log

{% if trades %} {% for trade in trades %} {% endfor %}
Time (UTC) Symbol Action Quantity Fill Price
{{ trade.timestamp }} {{ trade.symbol }} {{ trade.action }} {{ trade.quantity }} ${{ '%.2f'|format(trade.price) }}
{% else %}

No trades have been recorded yet. Executed trades from webhooks will appear here.

{% endif %}
{% endblock %}