Skip to content

Commit 52b98a4

Browse files
committed
X6: signal 5: fine tune.
1 parent a609dcd commit 52b98a4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

NostalgiaForInfinityX6.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5341,6 +5341,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
53415341
long_entry_logic.append((df["RSI_3_1h"] > 5.0) | (df["RSI_3_4h"] > 20.0) | (df["ROC_9_1d"] < 40.0))
53425342
# 1h down move, 4h high
53435343
long_entry_logic.append((df["RSI_3_1h"] > 5.0) | (df["STOCHRSIk_14_14_3_3_4h"] < 50.0))
5344+
# 1h & 4h down move, 1d low
5345+
long_entry_logic.append((df["RSI_3_1h"] > 10.0) | (df["RSI_3_4h"] > 10.0) | (df["CMF_20_1d"] > -0.2))
53445346
# 1h & 1d down move, 5m moving down
53455347
long_entry_logic.append((df["RSI_3_1h"] > 10.0) | (df["RSI_3_1d"] > 15.0) | (df["ROC_2"] > -0.0))
53465348
# 1h down move, 1h high

0 commit comments

Comments
 (0)