Skip to content

Commit 918f8b8

Browse files
committed
X6: signal 6: fine tune.
1 parent 2653955 commit 918f8b8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

NostalgiaForInfinityX6.py

Lines changed: 5 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.5.133"
72+
return "v16.5.134"
7373

7474
stoploss = -0.99
7575

@@ -5464,6 +5464,10 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
54645464
long_entry_logic.append(
54655465
(df["RSI_3"] > 10.0) | (df["AROONU_14_15m"] < 30.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 70.0)
54665466
)
5467+
# 5m down move, 15m & 1h still not low enough
5468+
long_entry_logic.append(
5469+
(df["RSI_3"] > 10.0) | (df["STOCHRSIk_14_14_3_3_15m"] < 20.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 20.0)
5470+
)
54675471
# 5m down move, 1h still high, 4h high
54685472
long_entry_logic.append(
54695473
(df["RSI_3"] > 10.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 50.0) | (df["AROONU_14_4h"] < 95.0)

0 commit comments

Comments
 (0)