diff --git a/NostalgiaForInfinityX4.py b/NostalgiaForInfinityX4.py index fde8552196..d1210716fa 100644 --- a/NostalgiaForInfinityX4.py +++ b/NostalgiaForInfinityX4.py @@ -65,7 +65,7 @@ class NostalgiaForInfinityX4(IStrategy): INTERFACE_VERSION = 3 def version(self) -> str: - return "v14.0.279" + return "v14.0.280" # ROI table: minimal_roi = { @@ -2227,6 +2227,8 @@ def grind_adjust_trade_position(self, trade: Trade, current_time: datetime, buy_amount = max_stake if (buy_amount < min_stake): return None + if (buy_amount < (min_stake * 1.5)): + buy_amount = min_stake * 1.5 self.dp.send_msg(f"Grinding entry [{trade.pair}] | Rate: {current_rate} | Stake amount: {buy_amount} | Profit (stake): {profit_stake} | Profit: {(profit_ratio * 100.0):.2f}%") return buy_amount