Skip to content

Commit 75b6f06

Browse files
committed
X7: signal 163: fine tune.
1 parent 9a0a595 commit 75b6f06

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.62"
72+
return "v17.3.63"
7373

7474
stoploss = -0.99
7575

@@ -19357,6 +19357,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1935719357
& ((df["RSI_3_1h"] > 30.0) | (df["AROONU_14_15m"] < 70.0) | (df["AROONU_14_4h"] < 90.0))
1935819358
# 1h down move, 1h high
1935919359
& ((df["RSI_3_1h"] > 30.0) | (df["MFI_14_1h"] < 80.0) | (df["AROONU_14_1h"] < 90.0))
19360+
# 1h down move, 1h still high, 1d overbought
19361+
& ((df["RSI_3_1h"] > 30.0) | (df["AROONU_14_1h"] < 50.0) | (df["ROC_9_1d"] < 40.0))
1936019362
# 1h down move, 1h & 4h high
1936119363
& ((df["RSI_3_1h"] > 30.0) | (df["AROONU_14_1h"] < 80.0) | (df["AROONU_14_4h"] < 100.0))
1936219364
# 1h down move, 1h high, 1d downtrend

0 commit comments

Comments
 (0)