add % in status table for profit

This commit is contained in:
seansan
2017-12-20 13:58:18 +01:00
committed by GitHub
parent 33293d5cdd
commit 4dab39ed9e

View File

@@ -196,7 +196,7 @@ def _status_table(bot: Bot, update: Update) -> None:
trade.id,
trade.pair,
shorten_date(arrow.get(trade.open_date).humanize(only_distance=True)),
'{:.2f}'.format(100 * trade.calc_profit(current_rate))
'{:.2f}%'.format(100 * trade.calc_profit(current_rate))
])
columns = ['ID', 'Pair', 'Since', 'Profit']