diff --git a/freqtrade/rpc/telegram.py b/freqtrade/rpc/telegram.py index ef54bf8b5..3b885c25c 100644 --- a/freqtrade/rpc/telegram.py +++ b/freqtrade/rpc/telegram.py @@ -476,10 +476,10 @@ def _performance(bot: Bot, update: Update) -> None: .order_by(text('profit_sum DESC')) \ .all() - stats = '\n'.join('{index}.\t[{pair}]({url})\t{profit:.2f}% ({count})'.format( + stats = '\n'.join('{index}.\t{pair}\t{profit:.2f}% ({count})'.format( index=i + 1, pair=pair, - url=exchange.get_pair_detail_url(pair), + #url=exchange.get_pair_detail_url(pair), profit=round(rate * 100, 2), count=count ) for i, (pair, rate, count) in enumerate(pair_rates))