Skip to content

Commit

Permalink
X5: signal 2: rework.
Browse files Browse the repository at this point in the history
  • Loading branch information
iterativv committed Sep 27, 2024
1 parent 37f2d6d commit 36fdcad
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion NostalgiaForInfinityX5.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class NostalgiaForInfinityX5(IStrategy):
INTERFACE_VERSION = 3

def version(self) -> str:
return "v15.1.56"
return "v15.1.57"

stoploss = -0.99

Expand Down Expand Up @@ -3416,6 +3416,10 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
(df["RSI_3_15m"] > 5.0) | (df["ROC_9_4h"] < 15.0) | (df["STOCHRSIk_14_14_3_3_4h"] < 50.0)
)
# 15m down move, 1h & 4h still high
long_entry_logic.append(
(df["RSI_3_15m"] > 15.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 50.0) | (df["STOCHRSIk_14_14_3_3_4h"] < 50.0)
)
# 15m down move, 1h & 4h still high
long_entry_logic.append(
(df["RSI_3_15m"] > 15.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 50.0) | (df["UO_7_14_28_4h"] < 50.0)
)
Expand Down

0 comments on commit 36fdcad

Please sign in to comment.