Skip to content

Commit f653cc9

Browse files
committed
X7: signal 43: add protection.
1 parent b188a23 commit f653cc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

NostalgiaForInfinityX7.py

Lines changed: 2 additions & 2 deletions
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.775"
72+
return "v17.3.776"
7373

7474
stoploss = -0.99
7575

@@ -15828,7 +15828,7 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1582815828
# 15m down move, 4h high & overbought
1582915829
& ((df["RSI_3_15m"] > 3.0) | (df["AROONU_14_4h"] < 90.0) | (df["ROC_9_4h"] < 100.0))
1583015830
# 15m down move, 1d high & overbought
15831-
& ((df["RSI_3_15m"] > 3.0) | (df["AROONU_14_1d"] < 100.0) | (df["ROC_9_1d"] < 70.0))
15831+
& ((df["RSI_3_15m"] > 3.0) | (df["AROONU_14_1d"] < 100.0) | (df["ROC_9_1d"] < 40.0))
1583215832
# 15m down move, 1h high, 1d downtrend
1583315833
& ((df["RSI_3_15m"] > 3.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 80.0) | (df["ROC_9_1d"] > -20.0))
1583415834
# 15m down move, 4h high & overbought

0 commit comments

Comments
 (0)