mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
4 lines
261 B
Django/Jinja
4 lines
261 B
Django/Jinja
(qtpylib.crossed_above(dataframe["rsi"], self.buy_rsi.value)) & # Signal: RSI crosses above buy_rsi
|
|
(dataframe["tema"] <= dataframe["bb_middleband"]) & # Guard: tema below BB middle
|
|
(dataframe["tema"] > dataframe["tema"].shift(1)) & # Guard: tema is raising
|