Skip to content

Commit 9a0a595

Browse files
committed
X6: signal 163: fine tune.
1 parent f572ab6 commit 9a0a595

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

NostalgiaForInfinityX6.py

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

7171
def version(self) -> str:
72-
return "v16.8.504"
72+
return "v16.8.505"
7373

7474
stoploss = -0.99
7575

@@ -18176,6 +18176,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1817618176
& ((df["RSI_3_1h"] > 30.0) | (df["AROONU_14_15m"] < 70.0) | (df["AROONU_14_4h"] < 90.0))
1817718177
# 1h down move, 1h high
1817818178
& ((df["RSI_3_1h"] > 30.0) | (df["MFI_14_1h"] < 80.0) | (df["AROONU_14_1h"] < 90.0))
18179+
# 1h down move, 1h still high, 1d overbought
18180+
& ((df["RSI_3_1h"] > 30.0) | (df["AROONU_14_1h"] < 50.0) | (df["ROC_9_1d"] < 40.0))
1817918181
# 1h down move, 1h & 4h high
1818018182
& ((df["RSI_3_1h"] > 30.0) | (df["AROONU_14_1h"] < 80.0) | (df["AROONU_14_4h"] < 100.0))
1818118183
# 1h down move, 1h high, 1d downtrend

0 commit comments

Comments
 (0)