Skip to content

Commit e9c3b74

Browse files
committed
Buy 52: rework.
1 parent 54711a2 commit e9c3b74

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.48"
110+
return "v10.8.49"
111111

112112
# ROI table:
113113
minimal_roi = {
@@ -8748,7 +8748,7 @@ def populate_buy_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame:
87488748
item_buy_logic.append((dataframe['ema_26_15m'] - dataframe['ema_12_15m']) > (dataframe['open_15m'] * 0.03))
87498749
item_buy_logic.append((dataframe['ema_26_15m'].shift(3) - dataframe['ema_12_15m'].shift(3)) > (dataframe['open_15m'] / 100))
87508750
item_buy_logic.append(dataframe['close_15m'] < (dataframe['bb20_2_low_15m'] * 0.998))
8751-
item_buy_logic.append(dataframe['crsi_1h'] > 8.0)
8751+
item_buy_logic.append(dataframe['crsi_1h'] > 10.0)
87528752

87538753
# Condition #53 - 15m. Semi swing. BTC not negative. Local dip.
87548754
elif index == 53:

0 commit comments

Comments
 (0)