Skip to content

Commit c9691d3

Browse files
committed
X6: signal 143: fine tune.
1 parent 027fbc1 commit c9691d3

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.0"
72+
return "v16.4.1"
7373

7474
stoploss = -0.99
7575

@@ -6624,6 +6624,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
66246624
long_entry_logic.append(
66256625
(df["RSI_3_15m"] > 25.0) | (df["RSI_3_1h"] > 35.0) | (df["STOCHRSIk_14_14_3_3_4h"] < 50.0)
66266626
)
6627+
# 1h & 4h & 1d down move
6628+
long_entry_logic.append((df["RSI_3_1h"] > 3.0) | (df["RSI_3_4h"] > 15.0) | (df["RSI_3_1d"] > 25.0))
66276629

66286630
# Logic
66296631
long_entry_logic.append(df["RSI_3"] < 40.0)

0 commit comments

Comments
 (0)