近期交易

按时间倒序显示最新成交记录
{% if recent_transactions %}
{% for tx in recent_transactions %}
{{ tx.asset_code }} {{ tx.asset_name|default:"" }} {% if tx.action == 'buy' %}买入{% else %}卖出{% endif %}
{% if show_amounts %} {{ tx.price|floatformat:2 }} {% endif %} {{ tx.quantity|floatformat:0 }} 股 {% if show_amounts %} {{ tx.amount|floatformat:2 }} {% endif %}
{{ tx.created_at|date:"Y-m-d H:i" }}
{% endfor %}
{% else %}

暂无交易记录

{% endif %}