{% extends "layouts/base.html" %} {% load i18n %} {% block content %}

{{ strategy.name }}

{% trans "Total Invested" %}
{#

{{ strategy.total_invested }} {{ strategy.payment_currency }}

#}
{% 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 }}%
{% trans "Entries" %}
{% for entry in entries %} {% endfor %}
{% trans "Date" %} {% trans "Amount Paid" %} {% trans "Amount Received" %} {% trans "Current Value" %} {% trans "P/L" %} {% trans "Actions" %}
{{ 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 %}
{% trans "Performance Over Time" %}
{% endblock %} {% block extra_js_body %} {% endblock %}