From 09d08ae3fec696242adb650feaa1ad1e9996e601 Mon Sep 17 00:00:00 2001 From: Erwin Hoeckx Date: Thu, 24 Jun 2021 08:25:49 +0200 Subject: [PATCH] Changed icon when opening position to something that is more clearly distinguishable from the closing in profit icon --- telegram_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telegram_bot.py b/telegram_bot.py index 955a03f2a..b1330d89f 100644 --- a/telegram_bot.py +++ b/telegram_bot.py @@ -730,7 +730,7 @@ async def send_daily_async(): def notify_entry_order_filled(self, position_side: str, qty: float, fee: float, price: float, total_size: float): if 'notify_entry_fill' not in self.config or self.config['notify_entry_fill'] is True: - icon = "\U00002733" + icon = "\U0001F535" self.send_msg(f'{icon} {self._bot.exchange.capitalize()} {self._bot.pair} Opened {position_side}\n' f'Amount:
{round_(qty, self._bot.qty_step)}
\n' f'Total size:
{round_(total_size, self._bot.qty_step)}
\n'