Skip to content

Commit 2158a14

Browse files
committed
X6: signal 101: fine tune.
1 parent 52b98a4 commit 2158a14

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
@@ -7866,6 +7866,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
78667866
long_entry_logic.append(
78677867
(df["RSI_3_1h"] > 5.0) | (df["RSI_3_4h"] > 20.0) | (df["STOCHRSIk_14_14_3_3_4h"] < 20.0)
78687868
)
7869+
# 1h & 4h down move, 1d low
7870+
long_entry_logic.append((df["RSI_3_1h"] > 10.0) | (df["RSI_3_4h"] > 10.0) | (df["CMF_20_1d"] > -0.2))
78697871
# 1h & 4h down move, 4h still not low enough
78707872
long_entry_logic.append((df["RSI_3_1h"] > 10.0) | (df["RSI_3_4h"] > 15.0) | (df["AROONU_14_4h"] < 20.0))
78717873
# 1h & 4h down move, 4h still not low enough

0 commit comments

Comments
 (0)