Skip to content

Commit 18159a2

Browse files
committed
X6: signal 41: fine tune.
1 parent 158597b commit 18159a2

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.5"
72+
return "v16.4.6"
7373

7474
stoploss = -0.99
7575

@@ -5419,6 +5419,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
54195419
# Protections
54205420
long_entry_logic.append(df["num_empty_288"] <= allowed_empty_candles_288)
54215421

5422+
# big drop in the last hour, 5m down move
5423+
long_entry_logic.append((df["close"] > (df["close_max_12"] * 0.75)) | (df["RSI_3"] > 3.0))
54225424
# big drop in the last hour
54235425
long_entry_logic.append(df["close"] > (df["close_max_12"] * 0.50))
54245426
# 5m down move, 15m still not low enough

0 commit comments

Comments
 (0)