Skip to content

Commit 0113145

Browse files
committed
X6: signal 143: fine tune.
1 parent 5c0114c commit 0113145

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.158"
72+
return "v16.5.159"
7373

7474
stoploss = -0.99
7575

@@ -8977,6 +8977,10 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
89778977
long_entry_logic.append(
89788978
(df["RSI_3_15m"] > 10.0) | (df["AROONU_14_15m"] < 40.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 50.0)
89798979
)
8980+
# 15m & 1h down move, 1h still high
8981+
long_entry_logic.append(
8982+
(df["RSI_3_15m"] > 15.0) | (df["RSI_3_1h"] > 20.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 40.0)
8983+
)
89808984
# 15m down move, 15m still high 4h high
89818985
long_entry_logic.append(
89828986
(df["RSI_3_15m"] > 15.0) | (df["AROONU_14_15m"] < 50.0) | (df["AROONU_14_4h"] < 70.0)

0 commit comments

Comments
 (0)