Refactor: Reduce default betSize from 2 to 1

This commit is contained in:
2026-03-16 10:45:13 -07:00
parent d4b2830943
commit 3eef181780

View File

@@ -5,7 +5,7 @@ export class BullDipBuyer extends BaseStrategy {
super('bull-dip-buyer', { super('bull-dip-buyer', {
maxYesPrice: config.maxYesPrice || 45, // Buy the dip when Yes is cheap maxYesPrice: config.maxYesPrice || 45, // Buy the dip when Yes is cheap
minYesPrice: config.minYesPrice || 15, // Avoid completely dead markets 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, cooldownMs: config.cooldownMs || 60000,
...config ...config
}); });