mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 02:12:01 +00:00
4 lines
262 B
Django/Jinja
4 lines
262 B
Django/Jinja
(qtpylib.crossed_above(dataframe["rsi"], self.sell_rsi.value)) & # Signal: RSI crosses above sell_rsi
|
|
(dataframe["tema"] > dataframe["bb_middleband"]) & # Guard: tema above BB middle
|
|
(dataframe["tema"] < dataframe["tema"].shift(1)) & # Guard: tema is falling
|