Skip to content

Commit

Permalink
X4: signal 13: rework.
Browse files Browse the repository at this point in the history
  • Loading branch information
iterativv committed Mar 4, 2024
1 parent 4550c13 commit 825446a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion NostalgiaForInfinityX4.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class NostalgiaForInfinityX4(IStrategy):
INTERFACE_VERSION = 3

def version(self) -> str:
return "v14.1.288"
return "v14.1.289"

stoploss = -0.99

Expand Down Expand Up @@ -23853,6 +23853,11 @@ def populate_entry_trend(self, dataframe: DataFrame, metadata: dict) -> DataFram
| (dataframe["ema_200_dec_48_1h"] == False)
| (dataframe["close"] > (dataframe["high_max_6_1d"] * 0.84))
)
item_buy_logic.append(
(dataframe["not_downtrend_1h"])
| (dataframe["rsi_3_15m"] > 16.0)
| (dataframe["rsi_14_1d"] < 70.0)
)

# Logic
item_buy_logic.append(dataframe["ema_26"] > dataframe["ema_12"])
Expand Down

0 comments on commit 825446a

Please sign in to comment.