moved binance.stoploss_adjust to exchange class

This commit is contained in:
Sam Germain
2022-03-09 15:47:16 -06:00
parent d47274066e
commit 6bb93bdc25
3 changed files with 13 additions and 8 deletions

View File

@@ -795,7 +795,7 @@ class Exchange:
Verify stop_loss against stoploss-order value (limit or price)
Returns True if adjustment is necessary.
"""
raise OperationalException(f"stoploss is not implemented for {self.name}.")
return stop_loss > float(order['stopPrice'])
def _get_stop_params(self, ordertype: str, stop_price: float) -> Dict:
params = self._params.copy()