Fully support kraken limit stoploss

This commit is contained in:
Matthias
2020-11-25 21:39:12 +01:00
parent 53231d94a9
commit 1d56c87a34
2 changed files with 2 additions and 2 deletions

View File

@@ -524,7 +524,7 @@ class Exchange:
'rate': self.get_fee(pair)
}
})
if closed_order["type"] in ["stop_loss_limit"]:
if closed_order["type"] in ["stop_loss_limit", "stop-loss-limit"]:
closed_order["info"].update({"stopPrice": closed_order["price"]})
self._dry_run_open_orders[closed_order["id"]] = closed_order