{% load i18n %}
{{ strategy.name }}
{% trans "Total Invested" %}
{% trans "Total Received" %}
{% trans "Average Entry Price" %}
{% trans "Current Total Value" %}
{% trans "Total P/L" %}
{% trans "Total % P/L" %}
{{ strategy.total_profit_loss_percentage|floatformat:2 }}%
{% spaceless %}
{% trans "Entries" %}
{% endspaceless %} {% if entries %}
{% for entry in entries %} {% endfor %}
{% trans "Date" %} {% trans "Amount Paid" %} {% trans "Amount Received" %} {% trans "Current Value" %} {% trans "P/L" %}
{{ entry.date|date:"SHORT_DATE_FORMAT" }} {% if entry.profit_loss_percentage > 0 %} {{ entry.profit_loss_percentage|floatformat:"2g" }}% {% elif entry.profit_loss_percentage < 0 %} {{ entry.profit_loss_percentage|floatformat:"2g" }}% {% endif %}
{% else %} {% endif %}
{% trans "Performance Over Time" %}