Skip to content

Commit dc8f9e7

Browse files
committed
X7: signal 1: fine tune.
1 parent c4b6fa9 commit dc8f9e7

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.2.678"
72+
return "v17.2.679"
7373

7474
stoploss = -0.99
7575

@@ -11965,6 +11965,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1196511965
& ((df["RSI_3_15m"] > 10.0) | (df["CMF_20_15m"] > -0.3) | (df["AROONU_14_4h"] < 100.0))
1196611966
# 15m down move, 1h high, 1d overbought
1196711967
& ((df["RSI_3_15m"] > 10.0) | (df["AROONU_14_1h"] < 100.0) | (df["ROC_9_1d"] < 80.0))
11968+
# 15m down move, 15m & 4h high
11969+
& ((df["RSI_3_15m"] > 10.0) | (df["AROONU_14_15m"] < 70.0) | (df["AROONU_14_4h"] < 80.0))
1196811970
# 15m down move, 1h high, 4h downtrend
1196911971
& ((df["RSI_3_15m"] > 10.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 70.0) | (df["ROC_9_4h"] > -25.0))
1197011972
# 15m down move, 1h high & overbought

0 commit comments

Comments
 (0)