Skip to content

Commit 5ba6607

Browse files
committed
X7: signal 103: fine tune.
1 parent f75c527 commit 5ba6607

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.69"
72+
return "v17.3.70"
7373

7474
stoploss = -0.99
7575

@@ -17653,6 +17653,8 @@ def populate_entry_trend(self, df: DataFrame, metadata: dict) -> DataFrame:
1765317653
)
1765417654
# 4h down move, 15m still not low enough, 4h high
1765517655
long_entry_logic.append((df["RSI_3_4h"] > 35.0) | (df["AROONU_14_15m"] < 30.0) | (df["AROONU_14_4h"] < 70.0))
17656+
# 4h down move, 4h high & overbought
17657+
long_entry_logic.append((df["RSI_3_4h"] > 50.0) | (df["AROONU_14_4h"] < 80.0) | (df["ROC_9_4h"] < 20.0))
1765617658
# 4h down move, 15m still high, 1h high
1765717659
long_entry_logic.append((df["RSI_3_4h"] > 60.0) | (df["AROONU_14_15m"] < 50.0) | (df["AROONU_14_1h"] < 90.0))
1765817660
# 1d down move, 4h high

0 commit comments

Comments
 (0)