Skip to content

Commit 17bba3d

Browse files
committed
X6: signal 542: fine tune.
1 parent bdb875d commit 17bba3d

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.124"
72+
return "v16.5.125"
7373

7474
stoploss = -0.99
7575

@@ -10102,6 +10102,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1010210102
# Protections
1010310103
short_entry_logic.append(df["num_empty_288"] <= allowed_empty_candles_288)
1010410104

10105+
# 5m & 15m up move, 15m stil low
10106+
short_entry_logic.append((df["RSI_3"] < 90.0) | (df["RSI_3_15m"] < 80.0) | (df["AROONU_14_15m"] > 60.0))
1010510107
# 15m & 1h up move, 4h still low
1010610108
short_entry_logic.append((df["RSI_3_15m"] < 95.0) | (df["RSI_3_1h"] < 95.0) | (df["RSI_14_4h"] > 60.0))
1010710109
# 15m & 1h up move, 4h still not high enough

0 commit comments

Comments
 (0)