Skip to content

Commit 4926083

Browse files
committed
X7: signal 145: fine tune.
1 parent 4179908 commit 4926083

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

NostalgiaForInfinityX7.py

Lines changed: 5 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.246"
72+
return "v17.3.247"
7373

7474
stoploss = -0.99
7575

@@ -19103,6 +19103,10 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1910319103
& ((df["RSI_3_1h"] > 10.0) | (df["CMF_20_15m"] > -0.40) | (df["AROONU_14_1d"] < 70.0))
1910419104
# 1h down move, 4h still high, 1d overbought
1910519105
& ((df["RSI_3_1h"] > 10.0) | (df["AROONU_14_4h"] < 40.0) | (df["ROC_9_1d"] < 40.0))
19106+
# 1h & 4h & 1d down move
19107+
& ((df["RSI_3_1h"] > 15.0) | (df["RSI_3_4h"] > 15.0) | (df["RSI_3_1d"] > 20.0))
19108+
# 1h & 4h down move, 15m still not low enough
19109+
& ((df["RSI_3_1h"] > 15.0) | (df["RSI_3_4h"] > 15.0) | (df["STOCHRSIk_14_14_3_3_15m"] < 30.0))
1910619110
# 15m & 1h down move, 1h high
1910719111
& ((df["RSI_3_15m"] > 15.0) | (df["RSI_3_1h"] > 40.0) | (df["AROONU_14_1h"] < 90.0))
1910819112
# 1h & 4h down move, 15m still high

0 commit comments

Comments
 (0)