Skip to content

Commit 41b0edd

Browse files
committed
X6: signal 46: fine tune.
1 parent 92e3a45 commit 41b0edd

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.184"
72+
return "v16.5.185"
7373

7474
stoploss = -0.99
7575

@@ -7378,6 +7378,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
73787378
| (df["close"] > (df["high_max_6_1d"] * 0.60))
73797379
| (df["close"] < (df["low_min_12_1d"] * 1.25))
73807380
)
7381+
# big drop in the last 2 days, 1d down move
7382+
long_entry_logic.append((df["close"] > (df["high_max_12_4h"] * 0.30)) | (df["RSI_3_1d"] > 30.0))
73817383
# big drop in the last 12 days, 1h down move
73827384
long_entry_logic.append((df["close"] > (df["high_max_12_1d"] * 0.30)) | (df["RSI_3_1h"] > 20.0))
73837385
# big drop in the last 12 days, 4h still high

0 commit comments

Comments
 (0)