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