diff --git a/NostalgiaForInfinityX5.py b/NostalgiaForInfinityX5.py index a8a8457458..2241c553a2 100644 --- a/NostalgiaForInfinityX5.py +++ b/NostalgiaForInfinityX5.py @@ -67,7 +67,7 @@ class NostalgiaForInfinityX5(IStrategy): INTERFACE_VERSION = 3 def version(self) -> str: - return "v15.1.356" + return "v15.1.357" stoploss = -0.99 @@ -5370,6 +5370,20 @@ def populate_indicators(self, df: DataFrame, metadata: dict) -> DataFrame: | (df["RSI_14_1d"] < 60.0) | (df["ROC_9_1d"] < 30.0) ) + # 15m down move, 15m & 1h still not low nough, 4h still high & overbought + & ( + (df["RSI_3_15m"] > 65.0) + | (df["RSI_14_15m"] < 40.0) + | (df["CCI_20_15m"] < -100.0) + | (df["STOCHRSIk_14_14_3_3_15m"] < 20.0) + | (df["RSI_14_1h"] < 50.0) + | (df["CCI_20_1h"] < -100.0) + | (df["RSI_14_4h"] < 60.0) + | (df["AROONU_14_4h"] < 50.0) + | (df["CCI_20_4h"] < -0.0) + | (df["STOCHRSIk_14_14_3_3_4h"] < 50.0) + | (df["ROC_9_4h"] < 200.0) + ) # 15m down move, 15m & 1h high, 4h high & overbought & ( (df["RSI_3_15m"] > 65.0)