diff --git a/freqtrade/rpc/telegram.py b/freqtrade/rpc/telegram.py
index c5cae1ea8..bbdece23b 100644
--- a/freqtrade/rpc/telegram.py
+++ b/freqtrade/rpc/telegram.py
@@ -372,7 +372,7 @@ def _performance(bot: Bot, update: Update) -> None:
.order_by(text('profit_sum DESC')) \
.all()
- stats = '\n'.join('{index}. {pair}\t{profit:.2f}%'.format(
+ stats = '\n'.join('{index}.\t{pair}\t{profit:.2f}%'.format(
index=i + 1,
pair=pair,
profit=round(rate * 100, 2)