Skip to content

Commit

Permalink
[WebInterface] use max community strategy profits
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeDSM committed May 16, 2024
1 parent cbe72b3 commit 5f629c7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<thead>
<tr class="">
<th scope="col">Strategy</th>
<th scope="col">Last month</th>
<th scope="col">Profitability</th>
<th scope="col">Traded coins</th>
<th scope="col">Exchange</th>
<th scope="col">Risk level</th>
Expand All @@ -30,8 +30,8 @@
</div>
</a>
</td>
<td class="align-middle">
{{ (strategy.results.get_max("1m") if strategy.results else 0) | round(2) }}%
<td class="align-middle" data-order="{{ strategy.results.get_max_value() }}">
{{ (strategy.results.get_max_value() if strategy.results else 0) | round(2) }}% over {{ strategy.results.get_max_unit() }}
</td>
<td class="align-middle">
{{ strategy.attributes['coins'] | join(', ') }}
Expand Down

0 comments on commit 5f629c7

Please sign in to comment.