Skip to content

Commit 6704ff0

Browse files
committed
X6: signal 162: fine tune.
1 parent 5658894 commit 6704ff0

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.147"
72+
return "v16.5.148"
7373

7474
stoploss = -0.99
7575

@@ -9299,6 +9299,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
92999299
& ((df["RSI_3_15m"] > 10.0) | (df["RSI_3_1d"] > 20.0) | (df["AROONU_14_4h"] < 90.0))
93009300
# 15m down move, 15m high
93019301
& ((df["RSI_3_15m"] > 10.0) | (df["AROONU_14_15m"] < 70.0))
9302+
# 15m & 1h down move, 15m still not low enough
9303+
& ((df["RSI_3_15m"] > 15.0) | (df["RSI_3_1h"] > 20.0) | (df["STOCHRSIk_14_14_3_3_15m"] < 30.0))
93029304
# 15m & 1h down nove, 1h still high
93039305
& ((df["RSI_3_15m"] > 15.0) | (df["RSI_3_1h"] > 20.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 50.0))
93049306
# 15m & 1h down move, 4h high

0 commit comments

Comments
 (0)