Skip to content

Commit 5320676

Browse files
committed
X7: signal 41: add protection.
1 parent 1f5dad3 commit 5320676

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
@@ -15042,6 +15042,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1504215042
& ((df["RSI_3_1h"] > 15.0) | (df["ROC_9_1h"] > -30.0) | (df["ROC_9_1d"] < 35.0))
1504315043
# 1h down move, 4h downtrend, 1d overbought
1504415044
& ((df["RSI_3_1h"] > 15.0) | (df["ROC_9_4h"] > -25.0) | (df["ROC_9_1d"] < 100.0))
15045+
# 1h & 4h down move, 1d high
15046+
& ((df["RSI_3_1h"] > 20.0) | (df["RSI_3_4h"] > 20.0) | (df["AROONU_14_1d"] < 80.0))
1504515047
# 1h & 1d down move, 4h high
1504615048
& ((df["RSI_3_1h"] > 20.0) | (df["RSI_3_1d"] > 20.0) | (df["AROONU_14_4h"] < 90.0))
1504715049
# 1h & 1d down move, 1h high

0 commit comments

Comments
 (0)