Skip to content

Commit cd6e1b7

Browse files
committed
X6: signal 3: fine tune.
1 parent 3da4501 commit cd6e1b7

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.142"
72+
return "v16.5.143"
7373

7474
stoploss = -0.99
7575

@@ -4829,6 +4829,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
48294829
long_entry_logic.append(
48304830
(df["RSI_3_15m"] > 30.0) | (df["AROONU_14_15m"] < 50.0) | (df["AROONU_14_1h"] < 90.0)
48314831
)
4832+
# 15m & 4h down move, 1h high
4833+
long_entry_logic.append((df["RSI_3_15m"] > 35.0) | (df["RSI_3_4h"] > 55.0) | (df["AROONU_14_1h"] < 90.0))
48324834
# 15m down move, 15m high, 4h high
48334835
long_entry_logic.append(
48344836
(df["RSI_3_15m"] > 35.0) | (df["AROONU_14_15m"] < 70.0) | (df["AROONU_14_4h"] < 50.0)

0 commit comments

Comments
 (0)