Skip to content

Commit a3c1349

Browse files
committed
X6: signal 502: add protection.
1 parent f653cc9 commit a3c1349

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.8.662"
72+
return "v16.8.663"
7373

7474
stoploss = -0.99
7575

@@ -19100,6 +19100,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1910019100
short_entry_logic.append(
1910119101
(df["RSI_3_15m"] < 90.0) | (df["RSI_3_1h"] < 85.0) | (df["STOCHRSIk_14_14_3_3_1h"] > 80.0)
1910219102
)
19103+
# 15m & 1h up move, 4h stil low
19104+
short_entry_logic.append((df["RSI_3_15m"] < 90.0) | (df["RSI_3_1h"] < 80.0) | (df["AROONU_14_4h"] > 50.0))
1910319105
# 15m & 4h up move, 1d low
1910419106
short_entry_logic.append((df["RSI_3_15m"] < 90.0) | (df["RSI_3_4h"] < 85.0) | (df["RSI_14_1d"] > 40.0))
1910519107
# 15m & 4h up move, 1d low

0 commit comments

Comments
 (0)