Skip to content

Commit 271bf50

Browse files
committed
X6: signal 45: fine tune.
1 parent 7b0e646 commit 271bf50

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

NostalgiaForInfinityX6.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6380,6 +6380,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
63806380
long_entry_logic.append(
63816381
(df["RSI_3_15m"] > 10.0) | (df["RSI_3_4h"] > 30.0) | (df["STOCHRSIk_14_14_3_3_4h"] < 40.0)
63826382
)
6383+
# 15m & 1h down move, 4h high
6384+
long_entry_logic.append((df["RSI_3_15m"] > 15.0) | (df["RSI_3_1h"] > 15.0) | (df["AROONU_14_4h"] < 70.0))
63836385
# 15m down move, 1h & 4h high
63846386
long_entry_logic.append(
63856387
(df["RSI_3_15m"] > 15.0) | (df["AROONU_14_1h"] < 70.0) | (df["STOCHRSIk_14_14_3_3_4h"] < 90.0)

0 commit comments

Comments
 (0)