Skip to content

Commit 3da4501

Browse files
committed
X6: signal 101: fine tune.
1 parent 0a62264 commit 3da4501

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

NostalgiaForInfinityX6.py

Lines changed: 4 additions & 4 deletions
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.141"
72+
return "v16.5.142"
7373

7474
stoploss = -0.99
7575

@@ -7620,12 +7620,12 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
76207620
)
76217621
# 15m & 1h down move, 4h still high
76227622
long_entry_logic.append((df["RSI_3_15m"] > 3.0) | (df["RSI_3_1h"] > 15.0) | (df["RSI_14_4h"] < 40.0))
7623+
# 15m & 4h down move, 4h high
7624+
long_entry_logic.append((df["RSI_3_15m"] > 3.0) | (df["RSI_3_1h"] > 30.0) | (df["AROONU_14_4h"] < 75.0))
76237625
# 15m & 1h down move, 1h still not low enough
76247626
long_entry_logic.append(
7625-
(df["RSI_3_15m"] > 3.0) | (df["RSI_3_1h"] > 30.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 30.0)
7627+
(df["RSI_3_15m"] > 3.0) | (df["RSI_3_1h"] > 35.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 30.0)
76267628
)
7627-
# 15m & 4h down move, 4h high
7628-
long_entry_logic.append((df["RSI_3_15m"] > 3.0) | (df["RSI_3_1h"] > 30.0) | (df["AROONU_14_4h"] < 75.0))
76297629
# 15m & 4h down move, 4h still not low enough
76307630
long_entry_logic.append(
76317631
(df["RSI_3_15m"] > 3.0) | (df["RSI_3_4h"] > 10.0) | (df["STOCHRSIk_14_14_3_3_4h"] < 20.0)

0 commit comments

Comments
 (0)