Skip to content

Commit d57a21f

Browse files
committed
X7: signal 43: add protection.
1 parent 84c5599 commit d57a21f

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
@@ -15993,6 +15993,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1599315993
& ((df["RSI_3_1h"] > 20.0) | (df["RSI_3_4h"] > 20.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 50.0))
1599415994
# 1h & 4h down move, 4h high
1599515995
& ((df["RSI_3_1h"] > 20.0) | (df["RSI_3_4h"] > 50.0) | (df["AROONU_14_4h"] < 75.0))
15996+
# 1h down move, 1h high, 4h overbought
15997+
& ((df["RSI_3_1h"] > 20.0) | (df["AROONU_14_1h"] < 70.0) | (df["ROC_9_4h"] < 10.0))
1599615998
# 1h down move, 1h high & overbought
1599715999
& ((df["RSI_3_1h"] > 20.0) | (df["AROONU_14_1d"] < 100.0) | (df["ROC_9_1d"] < 100.0))
1599816000
# 1h down move, 4h downtrend, 1d overbought

0 commit comments

Comments
 (0)