Cosmetics in freqtradebot

This commit is contained in:
hroff-1902 2020-06-14 01:42:45 +03:00
parent 4660909e95
commit de36f3d850
1 changed files with 1 additions and 3 deletions

View File

@ -795,10 +795,8 @@ class FreqtradeBot:
return False
# 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
stop_price = trade.open_rate * (1 + stoploss)
if self.create_stoploss_order(trade=trade, stop_price=stop_price, rate=stop_price):