Skip to content

Commit abcd60c

Browse files
committed
X7: signal 4: fine tune.
1 parent 75b6f06 commit abcd60c

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.63"
72+
return "v17.3.64"
7373

7474
stoploss = -0.99
7575

@@ -13266,6 +13266,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1326613266
& ((df["RSI_3_4h"] > 25.0) | (df["AROONU_14_4h"] < 50.0) | (df["ROC_9_1d"] > -40.0))
1326713267
# 4h down move, 4h high, 1d downtrend
1326813268
& ((df["RSI_3_4h"] > 45.0) | (df["AROONU_14_4h"] < 70.0) | (df["ROC_9_1d"] > -30.0))
13269+
# 1h still high, 4h & 1d downtrend
13270+
& ((df["AROONU_14_1h"] < 40.0) | (df["ROC_9_4h"] > -20.0) | (df["ROC_9_1d"] > -40.0))
1326913271
# 1h & 4h high, 1h overbought
1327013272
& ((df["AROONU_14_1h"] < 70.0) | (df["AROONU_14_4h"] < 100.0) | (df["ROC_9_1h"] < 80.0))
1327113273
# 1h & 4h high, 1h overbought

0 commit comments

Comments
 (0)