mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +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
|