Skip to content

Commit c48c460

Browse files
committed
X6: signal 542: fine tune.
1 parent 145dc25 commit c48c460

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

NostalgiaForInfinityX6.py

Lines changed: 5 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.91"
72+
return "v16.4.92"
7373

7474
stoploss = -0.99
7575

@@ -8580,6 +8580,10 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
85808580
short_entry_logic.append(
85818581
(df["RSI_3_15m"] < 95.0) | (df["RSI_3_1h"] < 90.0) | (df["CCI_20_change_pct_1h"] < -0.0)
85828582
)
8583+
# 15m up move, 15m still not high enough, 1d uptrend
8584+
short_entry_logic.append(
8585+
(df["RSI_3_15m"] < 90.0) | (df["STOCHRSIk_14_14_3_3_15m"] > 80.0) | (df["ROC_9_1d"] < 80.0)
8586+
)
85838587
# 15m & 4h up move, 15m still not high enough
85848588
short_entry_logic.append(
85858589
(df["RSI_3_15m"] < 85.0) | (df["RSI_3_4h"] < 90.0) | (df["STOCHRSIk_14_14_3_3_15m"] > 70.0)

0 commit comments

Comments
 (0)