stoploss limit order added to exchange

This commit is contained in:
misagh 2018-11-22 16:24:40 +01:00
parent 238dd6413c
commit bfbdddff26
2 changed files with 20 additions and 0 deletions

View File

@ -333,6 +333,24 @@ class Exchange(object):
except ccxt.BaseError as e:
raise OperationalException(e)
def stoploss_limit(self, pair: str, amount: float, stop_price: float, rate: float) -> Dict:
# Only binance is supported
if not self._api.name == 'Binance':
raise NotImplementedError(
'Stoploss limit orders are implemented only for binance as of now.')
# Set the precision for amount and price(rate) as accepted by the exchange
amount = self.symbol_amount_prec(pair, amount)
rate = self.symbol_price_prec(pair, rate)
stop_price = self.symbol_price_prec(pair, stop_price)
# Ensure rate is less than stop price
if stop_price >= rate:
raise OperationalException(
'In stoploss limit order, stop price should be more than limit price')
return self._api.create_order(pair, 'stop_loss', 'sell', amount, rate, {'stopPrice': stop_price})
@retrier
def get_balance(self, currency: str) -> float:
if self._conf['dry_run']:

View File

@ -233,8 +233,10 @@ class IStrategy(ABC):
stoplossflag = self.stop_loss_reached(current_rate=current_rate, trade=trade,
current_time=date, current_profit=current_profit,
force_stoploss=force_stoploss)
if stoplossflag.sell_flag:
return stoplossflag
# Set current rate to low for backtesting sell
current_rate = high or rate
current_profit = trade.calc_profit_percent(current_rate)