Skip to content

Commit

Permalink
X4: grinding: mode 1: fine tune the buys.
Browse files Browse the repository at this point in the history
  • Loading branch information
iterativv committed Oct 4, 2023
1 parent c8b30f5 commit dd37d93
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion 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.282"
return "v14.0.283"

# ROI table:
minimal_roi = {
Expand Down Expand Up @@ -2146,6 +2146,9 @@ def grind_adjust_trade_position(self, trade: Trade, current_time: datetime,
and (last_candle['rsi_3_15m'] > 16.0)
and (last_candle['rsi_3_1h'] > 26.0)
and (last_candle['rsi_3_4h'] > 26.0)
and (last_candle['cti_20_1h'] < 0.9)
and (last_candle['cti_20_4h'] < 0.9)
and (last_candle['cti_20_1d'] < 0.9)
)
or
(
Expand Down

0 comments on commit dd37d93

Please sign in to comment.