Skip to content

Commit e00d226

Browse files
committed
X7: signal 6: add protection.
1 parent 4d1aff0 commit e00d226

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.755"
72+
return "v17.3.756"
7373

7474
stoploss = -0.99
7575

@@ -13933,6 +13933,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1393313933
& ((df["RSI_3"] > 3.0) | (df["RSI_3_1d"] > 20.0) | (df["STOCHRSIk_14_14_3_3_15m"] < 40.0))
1393413934
# 5m down move, 4h & 1d overbought
1393513935
& ((df["RSI_3"] > 3.0) | (df["ROC_9_4h"] < 20.0) | (df["ROC_9_1d"] < 40.0))
13936+
# 5m & 1h down move, 4h high
13937+
& ((df["RSI_3"] > 5.0) | (df["RSI_3_1h"] > 40.0) | (df["AROONU_14_4h"] < 60.0))
1393613938
# 5m & 1h down move, 1h high
1393713939
& ((df["RSI_3"] > 5.0) | (df["RSI_3_1h"] > 60.0) | (df["AROONU_14_1h"] < 80.0))
1393813940
# 5m & 4h down move, 1d downtrend

0 commit comments

Comments
 (0)