Update dry-run behaviour

This commit is contained in:
Matthias
2022-02-25 19:10:16 +01:00
parent 0749199097
commit 6caa5f7131
5 changed files with 16 additions and 12 deletions

View File

@@ -32,7 +32,6 @@ class Kucoin(Exchange):
Verify stop_loss against stoploss-order value (limit or price)
Returns True if adjustment is necessary.
"""
# TODO: since kucoin uses Limit orders, changes to models will be required.
return order['info'].get('stop') is not None and stop_loss > float(order['stopPrice'])
def _get_stop_params(self, ordertype: str, stop_price: float) -> Dict: