Skip to content

Commit fbec869

Browse files
committed
X7: signal 143: add protection.
1 parent 84fd29d commit fbec869

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
@@ -20047,6 +20047,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
2004720047
& ((df["RSI_3_1h"] > 20.0) | (df["RSI_3_1d"] > 40.0) | (df["ROC_9_1d"] < 30.0))
2004820048
# 1h down move, 4h & 1d overbought
2004920049
& ((df["RSI_3_1h"] > 25.0) | (df["ROC_9_4h"] < 30.0) | (df["ROC_9_1d"] < 60.0))
20050+
# 1h & 4h down move, 1h high
20051+
& ((df["RSI_3_1h"] > 30.0) | (df["RSI_3_4h"] > 30.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 60.0))
2005020052
# 1h down move, 15m still high, 1h high
2005120053
& ((df["RSI_3_1h"] > 30.0) | (df["AROONU_14_15m"] < 50.0) | (df["AROONU_14_1h"] < 85.0))
2005220054
# 4h & 1d down move, 15m still not low enough

0 commit comments

Comments
 (0)