mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-11 10:43:56 +00:00
4 lines
240 B
Plaintext
4 lines
240 B
Plaintext
|
(qtpylib.crossed_above(dataframe['rsi'], 30)) & # Signal: RSI crosses above 30
|
||
|
(dataframe['tema'] <= dataframe['bb_middleband']) & # Guard: tema below BB middle
|
||
|
(dataframe['tema'] > dataframe['tema'].shift(1)) & # Guard: tema is raising
|