Skip to content

Commit

Permalink
use '+/-' instead of '▲/▼' for benchmark performance
Browse files Browse the repository at this point in the history
  • Loading branch information
kenkunz committed Sep 6, 2024
1 parent 422fbaf commit fcd7c8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/strategies/[strategy]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
<input type="checkbox" name="benchmarks" value={symbol} bind:group={selectedBenchmarks} />
{symbol}
<span class="performance" class:skeleton={loading && selectedBenchmarks.includes(symbol)}>
{formatProfitability(periodPerformance[symbol])}
{formatPercent(periodPerformance[symbol], 1, 1, { signDisplay: 'exceptZero' })}
</span>
</label>
{/each}
Expand Down

0 comments on commit fcd7c8c

Please sign in to comment.