Skip to content

Commit ab5714e

Browse files
committed
X6: signal 103: fine tune.
1 parent 8a86fa6 commit ab5714e

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.144"
72+
return "v16.5.145"
7373

7474
stoploss = -0.99
7575

@@ -8321,6 +8321,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
83218321
long_entry_logic.append(
83228322
(df["RSI_3_15m"] > 25.0) | (df["AROONU_14_4h"] < 90.0) | (df["STOCHRSIk_14_14_3_3_1d"] < 90.0)
83238323
)
8324+
# 15m & 1h down move, 15m high
8325+
long_entry_logic.append((df["RSI_3_15m"] > 30.0) | (df["RSI_3_1h"] > 30.0) | (df["AROONU_14_15m"] < 70.0))
83248326
# 15m down move, 15m & 1h high
83258327
long_entry_logic.append(
83268328
(df["RSI_3_15m"] > 30.0) | (df["AROONU_14_15m"] < 70.0) | (df["AROONU_14_1h"] < 90.0)

0 commit comments

Comments
 (0)