Skip to content

Commit

Permalink
add % in status table for profit
Browse files Browse the repository at this point in the history
  • Loading branch information
seansan committed Dec 20, 2017
1 parent 33293d5 commit 4dab39e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion freqtrade/rpc/telegram.py
Expand Up @@ -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']
Expand Down

0 comments on commit 4dab39e

Please sign in to comment.