Use better lock message

This commit is contained in:
Matthias
2020-10-20 19:39:38 +02:00
parent 64e680d7ee
commit 5f63fdd8ad
4 changed files with 4 additions and 9 deletions

View File

@@ -938,7 +938,7 @@ class FreqtradeBot:
stoploss_order=True)
# Lock pair for one candle to prevent immediate rebuys
self.strategy.lock_pair(trade.pair, timeframe_to_next_date(self.config['timeframe']),
reason='auto_lock_1_candle')
reason='Auto lock')
self._notify_sell(trade, "stoploss")
return True
@@ -1265,7 +1265,7 @@ class FreqtradeBot:
# Lock pair for one candle to prevent immediate rebuys
self.strategy.lock_pair(trade.pair, timeframe_to_next_date(self.config['timeframe']),
reason='auto_lock_1_candle')
reason='Auto lock')
self._notify_sell(trade, order_type)