Skip to content

Commit

Permalink
X4: buy 101: rework.
Browse files Browse the repository at this point in the history
  • Loading branch information
iterativv committed Sep 25, 2023
1 parent 5843a38 commit b0a62e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions NostalgiaForInfinityX4.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class NostalgiaForInfinityX4(IStrategy):
INTERFACE_VERSION = 3

def version(self) -> str:
return "v14.0.247"
return "v14.0.248"

# ROI table:
minimal_roi = {
Expand Down Expand Up @@ -14751,8 +14751,8 @@ def populate_entry_trend(self, dataframe: DataFrame, metadata: dict) -> DataFram
item_buy_logic.append(dataframe['hl_pct_change_6_1d'] < 0.9)
item_buy_logic.append(dataframe['num_empty_288'] < allowed_empty_candles)

item_buy_logic.append(dataframe['rsi_3'] > 4.0)
item_buy_logic.append(dataframe['rsi_3_15m'] > 4.0)
item_buy_logic.append(dataframe['rsi_3'] > 6.0)
item_buy_logic.append(dataframe['rsi_3_15m'] > 6.0)
item_buy_logic.append(dataframe['cti_20_1h'] < 0.8)
item_buy_logic.append(dataframe['rsi_14_1h'] < 80.0)
item_buy_logic.append(dataframe['cti_20_4h'] < 0.8)
Expand Down

0 comments on commit b0a62e2

Please sign in to comment.