Cosmetics in freqtradebot
This commit is contained in:
		| @@ -795,10 +795,8 @@ class FreqtradeBot: | |||||||
|             return False |             return False | ||||||
|  |  | ||||||
|         # If buy order is fulfilled but there is no stoploss, we add a stoploss on exchange |         # If buy order is fulfilled but there is no stoploss, we add a stoploss on exchange | ||||||
|         if (not stoploss_order): |         if not stoploss_order: | ||||||
|  |  | ||||||
|             stoploss = self.edge.stoploss(pair=trade.pair) if self.edge else self.strategy.stoploss |             stoploss = self.edge.stoploss(pair=trade.pair) if self.edge else self.strategy.stoploss | ||||||
|  |  | ||||||
|             stop_price = trade.open_rate * (1 + stoploss) |             stop_price = trade.open_rate * (1 + stoploss) | ||||||
|  |  | ||||||
|             if self.create_stoploss_order(trade=trade, stop_price=stop_price, rate=stop_price): |             if self.create_stoploss_order(trade=trade, stop_price=stop_price, rate=stop_price): | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user