diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index c5edc71ae..9268341c5 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -484,9 +484,10 @@ class FreqtradeBot(object): # or rejected by the exchange. if order_info['status'] == 'EXPIRED' or order_info['status'] == 'REJECTED': order_type = self.strategy.order_types['buy'] + order_tif = self.strategy.order_time_in_force['buy'] status = order_info['status'] - logger.warning('Buy %s order for %s is %s by %s.', - order_type, pair_s, status, self.exchange.name) + logger.warning('Buy %s order with time in force %s for %s is %s by %s.', + order_tif, order_type, pair_s, status, self.exchange.name) return False