Skip to content

Commit bf22abf

Browse files
committed
Buy 1: rework.
1 parent 8d25a46 commit bf22abf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

NostalgiaForInfinityX.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class NostalgiaForInfinityX(IStrategy):
107107
INTERFACE_VERSION = 2
108108

109109
def version(self) -> str:
110-
return "v10.8.139"
110+
return "v10.8.140"
111111

112112
# ROI table:
113113
minimal_roi = {
@@ -8475,7 +8475,7 @@ def populate_buy_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame:
84758475
item_buy_logic.append(((dataframe['close'] - dataframe['open'].rolling(12).min()) / dataframe['open'].rolling(12).min()) > 0.024)
84768476
item_buy_logic.append(dataframe['rsi_14'] < 35.0)
84778477
item_buy_logic.append(dataframe['r_32'] < -80.0)
8478-
item_buy_logic.append(dataframe['mfi'] < 26.0)
8478+
item_buy_logic.append(dataframe['mfi'] < 20.0)
84798479
item_buy_logic.append(dataframe['rsi_14_1h'] > 30.0)
84808480
item_buy_logic.append(dataframe['rsi_14_1h'] < 84.0)
84818481
item_buy_logic.append(dataframe['r_480_1h'] > -99.0)

0 commit comments

Comments
 (0)