Skip to content

Commit 158597b

Browse files
committed
X6: signal 102: fine tune.
1 parent ec489c5 commit 158597b

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.4.4"
72+
return "v16.4.5"
7373

7474
stoploss = -0.99
7575

@@ -6411,6 +6411,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
64116411
long_entry_logic.append((df["AROONU_14_15m"] < 90.0) | (df["AROONU_14_1h"] < 90.0))
64126412
# 1h still high, 4h high & overbought
64136413
long_entry_logic.append((df["AROONU_14_1h"] < 50.0) | (df["AROONU_14_4h"] < 90.0) | (df["ROC_9_4h"] < 80.0))
6414+
# 5m red, 1h still high
6415+
long_entry_logic.append((df["change_pct"] > -5.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 50.0))
64146416
# 1d top wick, 4h down move, 4h still high
64156417
long_entry_logic.append(
64166418
(df["top_wick_pct_1d"] < 30.0) | (df["RSI_3_4h"] > 60.0) | (df["AROONU_14_4h"] < 50.0)

0 commit comments

Comments
 (0)