Verify if trade is closed before acting on Stoploss_on_exchange

This commit is contained in:
Matthias
2020-01-23 20:36:48 +01:00
parent ea5ac1efb5
commit 70b9bd9c0e
2 changed files with 3 additions and 1 deletions

View File

@@ -1127,6 +1127,7 @@ def test_handle_stoploss_on_exchange(mocker, default_conf, fee, caplog,
'freqtrade.exchange.Exchange.stoploss_limit',
side_effect=DependencyException()
)
trade.is_open = True
freqtrade.handle_stoploss_on_exchange(trade)
assert log_has('Unable to place a stoploss order on exchange.', caplog)
assert trade.stoploss_order_id is None