Skip to content

Commit 91bb532

Browse files
committed
X7: signal 163: add protection.
1 parent bda7bb8 commit 91bb532

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

NostalgiaForInfinityX7.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class NostalgiaForInfinityX7(IStrategy):
6969
INTERFACE_VERSION = 3
7070

7171
def version(self) -> str:
72-
return "v17.3.734"
72+
return "v17.3.735"
7373

7474
stoploss = -0.99
7575

@@ -21059,6 +21059,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
2105921059
& ((df["RSI_3_15m"] > 15.0) | (df["CMF_20_4h"] > -0.2) | (df["AROONU_14_4h"] < 80.0))
2106021060
# 15m down move, 1h high, 4h overbought
2106121061
& ((df["RSI_3_15m"] > 15.0) | (df["AROONU_14_1h"] < 90.0) | (df["ROC_9_4h"] < 20.0))
21062+
# 15m down move, 4h & 1d downtrend
21063+
& ((df["RSI_3_15m"] > 15.0) | (df["ROC_9_4h"] > -20.0) | (df["ROC_9_1d"] > -20.0))
2106221064
# 15m & 1h down move, 1h downtrend, 1h downtrend, 15m still high, 1h high
2106321065
& (
2106421066
(df["RSI_3_15m"] > 20.0)

0 commit comments

Comments
 (0)