Skip to content

Commit

Permalink
X5: signal 5: rework.
Browse files Browse the repository at this point in the history
  • Loading branch information
iterativv committed Oct 26, 2024
1 parent 462c3a6 commit 90782e7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions NostalgiaForInfinityX5.py
Original file line number Diff line number Diff line change
Expand Up @@ -4658,6 +4658,10 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
long_entry_logic.append(
(df["RSI_3_15m"] > 15.0) | (df["RSI_3_1h"] > 25.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 40.0)
)
# 15m & 1h down move, 1h still high
long_entry_logic.append(
(df["RSI_3_15m"] > 15.0) | (df["RSI_3_1h"] > 30.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 50.0)
)
# 15m & 1h down move, 4h still high
long_entry_logic.append(
(df["RSI_3_15m"] > 15.0) | (df["RSI_3_1h"] > 30.0) | (df["STOCHRSIk_14_14_3_3_4h"] < 50.0)
Expand Down

0 comments on commit 90782e7

Please sign in to comment.