Don't handle trades if they've just been closed.
This commit is contained in:
		| @@ -610,7 +610,7 @@ class FreqtradeBot: | ||||
|                     trades_closed += 1 | ||||
|                     continue | ||||
|                 # Check if we can sell our current pair | ||||
|                 if trade.open_order_id is None and self.handle_trade(trade): | ||||
|                 if trade.open_order_id is None and trade.is_open and self.handle_trade(trade): | ||||
|                     trades_closed += 1 | ||||
|  | ||||
|             except DependencyException as exception: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user