Skip to content

Commit 04253b8

Browse files
committed
X7: signal 162: fine tune.
1 parent 35210bc commit 04253b8

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.51"
72+
return "v17.3.52"
7373

7474
stoploss = -0.99
7575

@@ -19036,6 +19036,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1903619036
& ((df["RSI_3_15m"] > 10.0) | (df["AROONU_14_15m"] < 70.0))
1903719037
# 15m down move, 1h & 1d high
1903819038
& ((df["RSI_3_15m"] > 10.0) | (df["AROONU_14_1h"] < 90.0) | (df["AROONU_14_1d"] < 100.0))
19039+
# 15m down move, 4h & 1d high
19040+
& ((df["RSI_3_15m"] > 10.0) | (df["AROONU_14_4h"] < 75.0) | (df["AROONU_14_1d"] < 100.0))
1903919041
# 15m down move, 1d high, 1d downtrend
1904019042
& ((df["RSI_3_15m"] > 10.0) | (df["AROONU_14_1d"] < 85.0) | (df["CMF_20_1d"] > -0.40))
1904119043
# 15m & 1h down move, 15m still not low enough

0 commit comments

Comments
 (0)