Skip to content

Commit 5ce7296

Browse files
committed
X6: signal 43: fine tune.
1 parent ddb8f6c commit 5ce7296

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.181"
72+
return "v16.5.182"
7373

7474
stoploss = -0.99
7575

@@ -6813,6 +6813,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
68136813
)
68146814
# 1h & 1d down move, 5m moving down
68156815
long_entry_logic.append((df["RSI_3_1h"] > 10.0) | (df["RSI_3_1d"] > 15.0) | (df["ROC_2"] > -0.0))
6816+
# 1h & 4h & 1d down move
6817+
long_entry_logic.append((df["RSI_3_1h"] > 15.0) | (df["RSI_3_4h"] > 15.0) | (df["RSI_3_1d"] > 15.0))
68166818
# 1h & 4h down move, 1h still high
68176819
long_entry_logic.append((df["RSI_3_1h"] > 15.0) | (df["RSI_3_4h"] > 45.0) | (df["AROONU_14_1h"] < 50.0))
68186820
# 1h & 1d down move, 1d still high

0 commit comments

Comments
 (0)