Skip to content

Commit 92e3a45

Browse files
committed
X6: signal 1: fine tune.
1 parent c62617e commit 92e3a45

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.183"
72+
return "v16.5.184"
7373

7474
stoploss = -0.99
7575

@@ -4221,6 +4221,10 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
42214221
long_entry_logic.append((df["RSI_3_15m"] > 15.0) | (df["RSI_3_1h"] > 25.0) | (df["AROONU_14_1h"] < 70.0))
42224222
# 15m & 1h down move, 4h high
42234223
long_entry_logic.append((df["RSI_3_15m"] > 15.0) | (df["RSI_3_1h"] > 40.0) | (df["AROONU_14_4h"] < 75.0))
4224+
# 15m down move, 15m still not low enough, 1h still high
4225+
long_entry_logic.append(
4226+
(df["RSI_3_15m"] > 15.0) | (df["AROONU_14_15m"] < 30.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 50.0)
4227+
)
42244228
# 15m down move, 15m still not low enough, 4h still high
42254229
long_entry_logic.append(
42264230
(df["RSI_3_15m"] > 15.0) | (df["AROONU_14_15m"] < 30.0) | (df["STOCHRSIk_14_14_3_3_4h"] < 50.0)

0 commit comments

Comments
 (0)