Move rate-calcuation for stoploss-limit order to exchange

This commit is contained in:
Matthias
2020-01-19 13:12:28 +01:00
parent 2f82122fc4
commit 8d2e0bfd62
3 changed files with 9 additions and 7 deletions

View File

@@ -519,7 +519,8 @@ class Exchange:
return self.create_order(pair, ordertype, 'sell', amount, rate, params)
def stoploss_limit(self, pair: str, amount: float, stop_price: float, rate: float) -> Dict:
def stoploss_limit(self, pair: str, amount: float, stop_price: float,
order_types: Dict) -> Dict:
"""
creates a stoploss limit order.
Since ccxt does not unify stoploss-limit orders yet, this needs to be implemented in each