Skip to content

Commit 32d31e2

Browse files
committed
X7: signal 143: add protection.
1 parent fbec869 commit 32d31e2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

NostalgiaForInfinityX7.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19967,6 +19967,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1996719967
& ((df["RSI_3_15m"] > 3.0) | (df["RSI_3_1h"] > 30.0) | (df["AROONU_14_15m"] < 70.0))
1996819968
# 15m down move, 1h high, 4h overbought
1996919969
& ((df["RSI_3_15m"] > 3.0) | (df["AROONU_14_1h"] < 70.0) | (df["ROC_9_4h"] < 10.0))
19970+
# 15m & 1h down move, 1d downtrend
19971+
& ((df["RSI_3_15m"] > 3.0) | (df["RSI_3_1h"] > 35.0) | (df["ROC_9_1d"] > -30.0))
1997019972
# 15m & 1h down move, 4h high
1997119973
& ((df["RSI_3_15m"] > 3.0) | (df["RSI_3_1h"] > 40.0) | (df["AROONU_14_1h"] < 85.0))
1997219974
# 15m & 4h down move, 15m still high

0 commit comments

Comments
 (0)