Skip to content

Commit 75adf6a

Browse files
committed
X6: signal 3: fine tune.
1 parent 2bb168f commit 75adf6a

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.5.161"
72+
return "v16.5.162"
7373

7474
stoploss = -0.99
7575

@@ -4891,6 +4891,10 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
48914891
long_entry_logic.append(
48924892
(df["RSI_3_1h"] > 10.0) | (df["RSI_3_4h"] > 45.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 20.0)
48934893
)
4894+
# 1h & 4h down move, 4h high
4895+
long_entry_logic.append(
4896+
(df["RSI_3_1h"] > 10.0) | (df["RSI_3_4h"] > 45.0) | (df["STOCHRSIk_14_14_3_3_4h"] < 70.0)
4897+
)
48944898
# 1h down move, 15m & 1h still not low enough
48954899
long_entry_logic.append(
48964900
(df["RSI_3_1h"] > 10.0) | (df["AROONU_14_15m"] < 30.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 20.0)

0 commit comments

Comments
 (0)