Reduce decimals on FIAT daily column

This commit is contained in:
Matthias
2022-06-10 20:18:33 +02:00
parent e8f8cd9d36
commit 76f87377ba
2 changed files with 10 additions and 10 deletions

View File

@@ -607,7 +607,7 @@ class Telegram(RPCHandler):
stats_tab = tabulate(
[[period['date'],
f"{round_coin_value(period['abs_profit'], stats['stake_currency'])}",
f"{period['fiat_value']:.3f} {stats['fiat_display_currency']}",
f"{period['fiat_value']:.2f} {stats['fiat_display_currency']}",
f"{period['trade_count']} trades"] for period in stats['data']],
headers=[
val.header,