Skip to content

Commit

Permalink
Merge pull request #164 from hoeckxer/feature/open_icon
Browse files Browse the repository at this point in the history
Changed icon when opening position to something that is more clearly …
  • Loading branch information
enarjord authored Jun 25, 2021
2 parents 7915de4 + 09d08ae commit f6d5078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion telegram_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'<b>{icon} {self._bot.exchange.capitalize()} {self._bot.pair}</b> Opened {position_side}\n'
f'<b>Amount: </b><pre>{round_(qty, self._bot.qty_step)}</pre>\n'
f'<b>Total size: </b><pre>{round_(total_size, self._bot.qty_step)}</pre>\n'
Expand Down

0 comments on commit f6d5078

Please sign in to comment.