Skip to content

Commit b55f666

Browse files
committed
X7: signal 44: fine tune.
1 parent 3e3f923 commit b55f666

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

NostalgiaForInfinityX7.py

Lines changed: 5 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.198"
72+
return "v17.3.199"
7373

7474
stoploss = -0.99
7575

@@ -15604,6 +15604,10 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1560415604
& ((df["RSI_3_1h"] > 20.0) | (df["STOCHRSIk_14_14_3_3_4h"] < 80.0) | (df["ROC_9_1d"] > -40.0))
1560515605
# 1h down move, 1h downtrend, 4h overbought
1560615606
& ((df["RSI_3_1h"] > 25.0) | (df["ROC_9_1h"] > -20.0) | (df["ROC_9_4h"] < 20.0))
15607+
# 1h down move, 4h high
15608+
& ((df["RSI_3_1h"] > 30.0) | (df["AROONU_14_4h"] < 100.0))
15609+
# 1h down move, 4h high & overbought
15610+
& ((df["RSI_3_1h"] > 30.0) | (df["STOCHRSIk_14_14_3_3_4h"] < 80.0) | (df["ROC_9_4h"] < 10.0))
1560715611
# 4h down move, 4h still high, 1d high
1560815612
& ((df["RSI_3_4h"] > 3.0) | (df["AROONU_14_4h"] < 50.0) | (df["AROONU_14_1d"] < 100.0))
1560915613
# 4h down move, 1d still high, 4h downtrend

0 commit comments

Comments
 (0)