mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
in case trade is not open, then handle_stoploss_on_exchange should not
be called
This commit is contained in:
parent
29f680ec5d
commit
da94e97c60
|
@ -554,7 +554,7 @@ class FreqtradeBot(object):
|
|||
|
||||
trade.update(order)
|
||||
|
||||
if self.strategy.order_types.get('stoploss_on_exchange'):
|
||||
if self.strategy.order_types.get('stoploss_on_exchange') and trade.is_open:
|
||||
result = self.handle_stoploss_on_exchange(trade)
|
||||
if result:
|
||||
self.wallets.update()
|
||||
|
@ -675,7 +675,7 @@ class FreqtradeBot(object):
|
|||
|
||||
# If trade is open and the buy order is fulfilled but there is no stoploss,
|
||||
# then we add a stoploss on exchange
|
||||
if trade.is_open and not trade.open_order_id and not trade.stoploss_order_id:
|
||||
if not trade.open_order_id and not trade.stoploss_order_id:
|
||||
if self.edge:
|
||||
stoploss = self.edge.stoploss(pair=trade.pair)
|
||||
else:
|
||||
|
@ -692,7 +692,7 @@ class FreqtradeBot(object):
|
|||
)['id']
|
||||
trade.stoploss_order_id = str(stoploss_order_id)
|
||||
|
||||
# Or there is already a stoploss on exchange.
|
||||
# Or the trade open and there is already a stoploss on exchange.
|
||||
# so we check if it is hit ...
|
||||
elif trade.stoploss_order_id:
|
||||
logger.debug('Handling stoploss on exchange %s ...', trade)
|
||||
|
|
Loading…
Reference in New Issue
Block a user