Skip to content

Commit f8270f3

Browse files
committed
X6: signal 43: fine tune.
1 parent ab5714e commit f8270f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

NostalgiaForInfinityX6.py

Lines changed: 3 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.145"
72+
return "v16.5.146"
7373

7474
stoploss = -0.99
7575

@@ -6725,6 +6725,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
67256725
)
67266726
# 15m & 1h down move, 1h high
67276727
long_entry_logic.append((df["RSI_3_15m"] > 20.0) | (df["RSI_3_1h"] > 25.0) | (df["AROONU_14_1h"] < 70.0))
6728+
# 15m & 1h down move, 15m still high
6729+
long_entry_logic.append((df["RSI_3_15m"] > 20.0) | (df["RSI_3_1h"] > 35.0) | (df["AROONU_14_15m"] < 40.0))
67286730
# 15m & 1h down move, 4h high
67296731
long_entry_logic.append(
67306732
(df["RSI_3_15m"] > 20.0) | (df["RSI_3_1h"] > 40.0) | (df["STOCHRSIk_14_14_3_3_4h"] < 80.0)

0 commit comments

Comments
 (0)