Skip to content

Commit 9243f99

Browse files
committed
X6: signal 502: fine tune.
1 parent c554170 commit 9243f99

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.155"
72+
return "v16.5.156"
7373

7474
stoploss = -0.99
7575

@@ -9683,6 +9683,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
96839683
short_entry_logic.append(
96849684
(df["RSI_3"] < 95.0) | (df["RSI_3_1h"] < 85.0) | (df["STOCHRSIk_14_14_3_3_15m"] > 70.0)
96859685
)
9686+
# 5m up move, 15m still low
9687+
short_entry_logic.append((df["RSI_3"] < 95.0) | (df["STOCHRSIk_14_14_3_3_15m"] > 50.0))
96869688
# 5m up move, 4h low
96879689
short_entry_logic.append((df["RSI_3"] < 90.0) | (df["AROONU_14_4h"] > 20.0))
96889690
# 15m & 1h down move, 4h still not high enough

0 commit comments

Comments
 (0)