computeDailyTarget was only solving for consistency (realTarget = maxDay / consistency). When realTarget < profitTarget, the function would stop trading before hitting the actual profit goal. Now uses Math.max(realTarget, profitTarget) - totalProfit as the remaining needed, capped at maxDay for the daily target. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>