Skip to content

Commit 6909b2d

Browse files
committed
Buy 27: rework.
1 parent 75fb7b5 commit 6909b2d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

NostalgiaForInfinityX.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1002,7 +1002,7 @@ class NostalgiaForInfinityX(IStrategy):
10021002
"safe_pump_12h_threshold" : None,
10031003
"safe_pump_24h_threshold" : None,
10041004
"safe_pump_36h_threshold" : None,
1005-
"safe_pump_48h_threshold" : None,
1005+
"safe_pump_48h_threshold" : 1.8,
10061006
"btc_1h_not_downtrend" : False,
10071007
"close_over_pivot_type" : "none", # pivot, sup1, sup2, sup3, res1, res2, res3
10081008
"close_over_pivot_offset" : 1.0,
@@ -7834,6 +7834,7 @@ def populate_buy_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame:
78347834
item_buy_logic.append(dataframe['rsi_14'] < 32.0)
78357835
item_buy_logic.append(dataframe['cti'] < -0.8)
78367836
item_buy_logic.append(dataframe['r_14'] < -96.0)
7837+
item_buy_logic.append(dataframe['r_480_1h'] < -5.0)
78377838

78387839
# Condition #28 - Semi swing. Downtrend. Local deep.
78397840
elif index == 28:

0 commit comments

Comments
 (0)