This commit is contained in:
misagh 2018-11-30 17:33:00 +01:00
parent a28f1d2b2a
commit f51713b447

View File

@ -652,7 +652,7 @@ class FreqtradeBot(object):
if self.check_sell(trade, sell_rate, buy, sell):
return True
logger.info('Found no sell signal for %s.' % trade)
logger.info('Found no sell signal for %s.', trade)
return False
def check_sell(self, trade: Trade, sell_rate: float, buy: bool, sell: bool) -> bool: