Skip to content

Commit 9adff09

Browse files
committed
X7: signal 1: fine tune.
1 parent 49b86c8 commit 9adff09

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.67"
72+
return "v17.3.68"
7373

7474
stoploss = -0.99
7575

@@ -12107,6 +12107,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1210712107
& ((df["RSI_3_1h"] > 5.0) | (df["RSI_3_4h"] > 20.0) | (df["AROONU_14_4h"] < 70.0))
1210812108
# 1h & 4h down move, 1d overbought
1210912109
& ((df["RSI_3_1h"] > 5.0) | (df["RSI_3_4h"] > 20.0) | (df["ROC_9_1d"] < 40.0))
12110+
# 1h down move, 1h still high, 4h high
12111+
& ((df["RSI_3_1h"] > 5.0) | (df["AROONU_14_1h"] < 50.0) | (df["AROONU_14_4h"] < 90.0))
1211012112
# 1h down move, 1d high, 4h downtrend
1211112113
& ((df["RSI_3_1h"] > 5.0) | (df["AROONU_14_1d"] < 90.0) | (df["ROC_9_4h"] > -30.0))
1211212114
# 1h & 4h down move, 15m still not low enough

0 commit comments

Comments
 (0)