Skip to content

Commit 154677f

Browse files
committed
X6: signal 61: fine tune.
1 parent ccce12d commit 154677f

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.164"
72+
return "v16.5.165"
7373

7474
stoploss = -0.99
7575

@@ -7393,6 +7393,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
73937393
long_entry_logic.append((df["RSI_3_15m"] > 10.0) | (df["RSI_3_1h"] > 30.0) | (df["AROONU_14_1h"] < 70.0))
73947394
# 15m down move, 15m high
73957395
long_entry_logic.append((df["RSI_3_15m"] > 10.0) | (df["AROONU_14_15m"] < 70.0))
7396+
# 15m down move, 4h still high, 1d overbought
7397+
long_entry_logic.append((df["RSI_3_15m"] > 10.0) | (df["AROONU_14_4h"] < 50.0) | (df["ROC_9_1d"] < 50.0))
73967398
# 15m down move, 1d overbought
73977399
long_entry_logic.append((df["RSI_3_15m"] > 10.0) | (df["ROC_9_1d"] < 80.0))
73987400
# 15m & 1h down move, 4h high

0 commit comments

Comments
 (0)