From 3eef181780cc87ae60a9b5d937eac169f1797291 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Mon, 16 Mar 2026 10:45:13 -0700 Subject: [PATCH] Refactor: Reduce default betSize from 2 to 1 --- lib/strategies/bull-dip-buyer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/strategies/bull-dip-buyer.js b/lib/strategies/bull-dip-buyer.js index 72a5032..aa40699 100644 --- a/lib/strategies/bull-dip-buyer.js +++ b/lib/strategies/bull-dip-buyer.js @@ -5,7 +5,7 @@ export class BullDipBuyer extends BaseStrategy { super('bull-dip-buyer', { maxYesPrice: config.maxYesPrice || 45, // Buy the dip when Yes is cheap minYesPrice: config.minYesPrice || 15, // Avoid completely dead markets - betSize: config.betSize || 2, + betSize: config.betSize || 1, // Changed to $1 per Master's orders! cooldownMs: config.cooldownMs || 60000, ...config });