mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Remove currency from daily table
This commit is contained in:
parent
30b72ad98a
commit
4928686af9
|
@ -173,7 +173,7 @@ class RPC(object):
|
|||
stake_currency,
|
||||
fiat_display_currency
|
||||
) if self._fiat_converter else 0,
|
||||
symbol=fiat_display_currency
|
||||
symbol=fiat_display_currency if fiat_display_currency else ''
|
||||
),
|
||||
'{value} trade{s}'.format(
|
||||
value=value['trades'],
|
||||
|
|
|
@ -241,7 +241,7 @@ class Telegram(RPC):
|
|||
headers=[
|
||||
'Day',
|
||||
f'Profit {stake_cur}',
|
||||
f'Profit {fiat_disp_cur}'
|
||||
f'Profit {fiat_disp_cur if fiat_disp_cur else ""}'
|
||||
],
|
||||
tablefmt='simple')
|
||||
message = f'<b>Daily Profit over the last {timescale} days</b>:\n<pre>{stats}</pre>'
|
||||
|
|
Loading…
Reference in New Issue
Block a user