Skip to content

Commit

Permalink
X5: add global protection rule (Long).
Browse files Browse the repository at this point in the history
  • Loading branch information
iterativv committed Jan 9, 2025
1 parent 49aa00e commit 6ca47a1
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion NostalgiaForInfinityX5.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class NostalgiaForInfinityX5(IStrategy):
INTERFACE_VERSION = 3

def version(self) -> str:
return "v15.1.321"
return "v15.1.322"

stoploss = -0.99

Expand Down Expand Up @@ -6302,6 +6302,25 @@ def populate_indicators(self, df: DataFrame, metadata: dict) -> DataFrame:
| (df["AROONU_14_1d"] < 25.0)
| (df["STOCHk_14_3_3_1d"] < 40.0)
)
# 15m & 1h & 4h & 1d down move, 15m & 1h & 4h & 1d still not low enough
& (
(df["RSI_3_15m"] > 20.0)
| (df["RSI_3_1h"] > 20.0)
| (df["RSI_3_4h"] > 30.0)
| (df["RSI_3_1d"] > 45.0)
| (df["RSI_14_15m"] < 20.0)
| (df["CMF_20_15m"] > -0.10)
| (df["CCI_20_15m"] < -200.0)
| (df["RSI_14_1h"] < 30.0)
| (df["CMF_20_1h"] > -0.10)
| (df["CCI_20_1h"] < -200.0)
| (df["RSI_14_4h"] < 35.0)
| (df["CMF_20_4h"] > -0.25)
| (df["CCI_20_4h"] < -200.0)
| (df["RSI_14_1d"] < 35.0)
| (df["CMF_20_1d"] > -0.25)
| (df["STOCHk_14_3_3_1d"] < 20.0)
)
# 15m & 1h & 4h & 1d dowmove, 15m & 1h & 4h still not low enough, 1d still not low enough & downtrend
& (
(df["RSI_3_15m"] > 20.0)
Expand Down

0 comments on commit 6ca47a1

Please sign in to comment.