{% for symbol in res['profits'] %}
{% set _ = moneySymbol.append(symbol) %}
{% if symbol == "USDT" %}
{{ symbol }} : +{{ res['moneyProfits'][symbol]|round(2)|string
}}₮ ({{
res['profits'][symbol]|round(2)|string+"%" }})
{% elif symbol == "BTC" %}
{{ symbol }} : +{{
"{:.5f}".format(res['moneyProfits'][symbol])|string }}₿ ({{
res['profits'][symbol]|round(2)|string+"%" }})
{% endif %}
{% endfor %}
{% for symbol in res['losses'] %}
{% set _ = moneySymbol.append(symbol) %}
{% if symbol == "USDT" %}
{{ symbol }} : {{ res['moneyLosses'][symbol]|round(2)|string }}₮ ({{
res['losses'][symbol]|round(2)|string+"%" }})
{% elif symbol == "BTC" %}
{{ symbol }} : {{ "{:.5f}".format(res['moneyLosses'][symbol])|string
}}₿ ({{
res['losses'][symbol]|round(2)|string+"%" }})
{% endif %}
{% endfor %}
{% if res['profits'] == {} and res['losses'] == {} %}
Aucun résultats
{% endif %}
Balance avant
{% for i in moneySymbol %}
{% if i == "USDT" %}
{{ res['startBalance'][i] }}₮
{% elif i == "BTC" %}
{{res['startBalance'][i] }}₿
{% endif %}
{% endfor %}
Balance après
{% for i in res['profits'] %}
{% if i == "USDT" %}
{{ res['startBalance'][i] + res['moneyProfits'][i]}}₮
{% elif i == "BTC" %}
{{"{:.5f}".format(res['startBalance'][i] + res['moneyProfits'][i])}}₿
{% endif %}
{% endfor %}
{% for i in res['losses'] %}
{% if i == "USDT" %}
{{ res['startBalance'][i] + res['moneyLosses'][i]}}₮
{% elif i == "BTC" %}
{{"{:.5f}".format(res['startBalance'][i] + res['moneyLosses'][i])}}₿
{% endif %}
{% endfor %}
Nombre d'ordres gagants : {{ res['nbWins'] }}
Nombre d'ordres perdants : {{ res['nbLosses'] }}
Nombre total d'ordres : {{ res['totalTrades'] }}
Pourcentage de réussite : {{ res['winrate'] }}%