Write log when trying to sell opened trades (#608)

This commit is contained in:
Luis Felipe Díaz Chica 2018-04-21 11:44:57 -05:00 committed by Michael Egger
parent 6d327658ea
commit 954c6e8c15

View File

@ -378,7 +378,7 @@ class FreqtradeBot(object):
if self.analyze.should_sell(trade, current_rate, datetime.utcnow(), buy, sell):
self.execute_sell(trade, current_rate)
return True
logger.info('Found no sell signals for whitelisted currencies. Trying again..')
return False
def check_handle_timedout(self, timeoutvalue: int) -> None: