gateio stoploss adjust

This commit is contained in:
Sam Germain
2022-03-12 20:14:23 -06:00
parent 91549d3254
commit 843606c9cb
2 changed files with 17 additions and 0 deletions

View File

@@ -48,3 +48,10 @@ class Gateio(Exchange):
pair=pair,
params={'stop': True}
)
def stoploss_adjust(self, stop_loss: float, order: Dict) -> bool:
"""
Verify stop_loss against stoploss-order value (limit or price)
Returns True if adjustment is necessary.
"""
return stop_loss > float(order['stopPrice'])