Skip to content

Commit 33e5553

Browse files
committed
X6: signal 542: fine tune.
1 parent dbc62b4 commit 33e5553

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

7474
stoploss = -0.99
7575

@@ -9320,6 +9320,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
93209320
)
93219321
# 1d up move, 4h low
93229322
short_entry_logic.append((df["RSI_3_1d"] < 85.0) | (df["STOCHRSIk_14_14_3_3_4h"] > 40.0))
9323+
# 15m & 4h still not high enough
9324+
short_entry_logic.append((df["STOCHRSIk_14_14_3_3_15m"] > 70.0) | (df["STOCHRSIk_14_14_3_3_4h"] > 70.0))
93239325
# 1d bot wick, 4h still not high enough
93249326
short_entry_logic.append((df["bot_wick_pct_1d"] < 30.0) | (df["STOCHRSIk_14_14_3_3_4h"] > 80.0))
93259327
# rise in the last 12 hours, relatively stable before the 12 hours

0 commit comments

Comments
 (0)