Skip to content

Commit

Permalink
X4: long rapid mode exits: rework.
Browse files Browse the repository at this point in the history
  • Loading branch information
iterativv committed Oct 7, 2023
1 parent 80edd58 commit 25b309b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 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.292"
return "v14.0.293"

# ROI table:
minimal_roi = {
Expand Down Expand Up @@ -864,7 +864,7 @@ def long_exit_rapid(self, pair: str, current_rate: float,
return True, f"{signal_name}"
else:
if (
(profit_current_stake_ratio >= 0.03)
(profit_current_stake_ratio >= 0.01)
):
previous_profit = None
if self.target_profit_cache is not None and pair in self.target_profit_cache.data:
Expand Down

0 comments on commit 25b309b

Please sign in to comment.