improve comment

This commit is contained in:
Matthias 2019-01-02 14:44:17 +01:00
parent 516217b6cb
commit 3329ffd071

View File

@ -278,7 +278,7 @@ class IStrategy(ABC):
# evaluate if the stoploss was hit # evaluate if the stoploss was hit
if self.stoploss is not None and trade.stop_loss >= current_rate: if self.stoploss is not None and trade.stop_loss >= current_rate:
selltype = SellType.STOP_LOSS selltype = SellType.STOP_LOSS
# Trailing stop (and rate did move) # If Trailing stop (and max-rate did move above open rate)
if trailing_stop and trade.open_rate != trade.max_rate: if trailing_stop and trade.open_rate != trade.max_rate:
selltype = SellType.TRAILING_STOP_LOSS selltype = SellType.TRAILING_STOP_LOSS
logger.debug( logger.debug(