cleanly check if stop_loss is initialized

This commit is contained in:
xmatthias 2018-06-27 00:18:50 +02:00
parent 88b898cce4
commit e9d5bceeb9
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ class Analyze(object):
current_profit = trade.calc_profit_percent(current_rate)
trailing_stop = self.config.get('trailing_stop', False)
if trade.stop_loss is None:
if trade.stop_loss is None or trade.stop_loss == 0:
# initially adjust the stop loss to the base value
trade.adjust_stop_loss(trade.open_rate, self.strategy.stoploss)