stable/freqtrade/templates/strategy_subtemplates/sell_trend_full.j2

4 lines
262 B
Plaintext
Raw Normal View History

(qtpylib.crossed_above(dataframe['rsi'], self.sell_rsi.value)) & # Signal: RSI crosses above sell_rsi
2019-11-21 06:13:56 +00:00
(dataframe['tema'] > dataframe['bb_middleband']) & # Guard: tema above BB middle
(dataframe['tema'] < dataframe['tema'].shift(1)) & # Guard: tema is falling