stoploss in freqtradebot leverage adjustment

This commit is contained in:
Sam Germain 2022-02-18 05:43:16 -06:00
parent 92ad353169
commit ac433eebfe
1 changed files with 5 additions and 1 deletions

View File

@ -1065,7 +1065,11 @@ class FreqtradeBot(LoggingMixin):
# If enter order is fulfilled but there is no stoploss, we add a stoploss on exchange
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 / trade.leverage
)
if trade.is_short:
stop_price = trade.open_rate * (1 - stoploss)
else: