Skip to content

Commit 2d2e50e

Browse files
committed
X7: signal 43: fine tune.
1 parent 48d6842 commit 2d2e50e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

NostalgiaForInfinityX7.py

Lines changed: 3 additions & 3 deletions
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.235"
72+
return "v17.3.236"
7373

7474
stoploss = -0.99
7575

@@ -15337,8 +15337,6 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1533715337
& ((df["RSI_3_15m"] > 15.0) | (df["AROONU_14_15m"] < 50.0) | (df["STOCHRSIk_14_14_3_3_1h"] < 80.0))
1533815338
# 15m down move, 1h high, 1d overbought
1533915339
& ((df["RSI_3_15m"] > 15.0) | (df["AROONU_14_1h"] < 80.0) | (df["ROC_9_1d"] < 40.0))
15340-
# 15m down move, 1h high, 4h overbought
15341-
& ((df["RSI_3_15m"] > 15.0) | (df["AROONU_14_1h"] < 90.0) | (df["ROC_9_4h"] < 20.0))
1534215340
# 15m down move, 4h high, 1d overbought
1534315341
& ((df["RSI_3_15m"] > 15.0) | (df["AROONU_14_4h"] < 70.0) | (df["ROC_9_1d"] < 200.0))
1534415342
# 15m down move, 4h high, 1d overbought
@@ -15361,6 +15359,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1536115359
& ((df["RSI_3_15m"] > 20.0) | (df["RSI_3_1d"] > 20.0) | (df["AROONU_14_4h"] < 90.0))
1536215360
# 15m down move, 15m & 1h high
1536315361
& ((df["RSI_3_15m"] > 20.0) | (df["AROONU_14_15m"] < 70.0) | (df["AROONU_14_1h"] < 100.0))
15362+
# 15m down move, 1h high, 4h overbought
15363+
& ((df["RSI_3_15m"] > 20.0) | (df["AROONU_14_1h"] < 90.0) | (df["ROC_9_4h"] < 10.0))
1536415364
# 1h & 4h down move, 1d still high
1536515365
& ((df["RSI_3_1h"] > 3.0) | (df["RSI_3_4h"] > 10.0) | (df["STOCHRSIk_14_14_3_3_1d"] < 50.0))
1536615366
# 1h & 4h down move, 1d still high

0 commit comments

Comments
 (0)