oops, lost in git :/

This commit is contained in:
misagh 2018-11-25 21:02:58 +01:00
parent fb7b65c909
commit 890cef88ab
1 changed files with 0 additions and 4 deletions

View File

@ -779,10 +779,6 @@ class FreqtradeBot(object):
sell_type = 'sell'
if sell_reason in (SellType.STOP_LOSS, SellType.TRAILING_STOP_LOSS):
sell_type = 'stoploss'
if self.config.get('dry_run', False) and sell_type == 'stoploss':
limit = trade.stop_loss
# Execute sell and update trade record
order_id = self.exchange.sell(pair=str(trade.pair),
ordertype=self.strategy.order_types[sell_type],