diff --git a/NostalgiaForInfinityX4.py b/NostalgiaForInfinityX4.py index 70e5f690da..d9a80c6f25 100644 --- a/NostalgiaForInfinityX4.py +++ b/NostalgiaForInfinityX4.py @@ -68,7 +68,7 @@ class NostalgiaForInfinityX4(IStrategy): INTERFACE_VERSION = 3 def version(self) -> str: - return "v14.1.301" + return "v14.1.302" stoploss = -0.99 @@ -36098,6 +36098,9 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame: | (df["ema_200_dec_48_1h"] == False) | (df["ema_200_dec_4_1d"] == False) ) + long_entry_logic.append( + (df["ema_200_dec_24_4h"] == False) | (df["ema_200_dec_4_1d"] == False) | (df["hl_pct_change_6_1d"] > 0.12) + ) # Logic long_entry_logic.append(df["rsi_14"] < self.entry_46_rsi_14_max.value)