Skip to content

Commit 9c2bdfa

Browse files
committed
X7: signal 163: fine tune.
1 parent faa2723 commit 9c2bdfa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

NostalgiaForInfinityX7.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class NostalgiaForInfinityX7(IStrategy):
6969
INTERFACE_VERSION = 3
7070

7171
def version(self) -> str:
72-
return "v17.3.0"
72+
return "v17.3.1"
7373

7474
stoploss = -0.99
7575

@@ -19245,6 +19245,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1924519245
)
1924619246
# 1h downtrend, 4h high, 1d downtrend
1924719247
& ((df["CMF_20_1h"] > -0.2) | (df["STOCHRSIk_14_14_3_3_4h"] < 90.0) | (df["CMF_20_1d"] > -0.25))
19248+
# 4h & 1d high, 1d overbought
19249+
& ((df["AROONU_14_4h"] < 100.0) | (df["AROONU_14_1d"] < 100.0) | (df["ROC_9_1d"] < 30.0))
1924819250
# 4h top wick, 15m & 1h down move
1924919251
& ((df["top_wick_pct_4h"] < 10.0) | (df["RSI_3_15m"] > 15.0) | (df["RSI_3_1h"] > 40.0))
1925019252
# 4h top wick, 1h down move, 1h high

0 commit comments

Comments
 (0)