Increase default bet size from 2 to 4

This commit is contained in:
2026-03-16 20:05:19 -07:00
committed by GitHub
parent ab06fa683d
commit 149f5091fe

View File

@@ -13,7 +13,7 @@ export class LateMomentumStrategy extends BaseStrategy {
constructor(config = {}) { constructor(config = {}) {
super('late-momentum', { super('late-momentum', {
triggerPct: config.triggerPct || 75, triggerPct: config.triggerPct || 75,
betSize: config.betSize || 2, betSize: config.betSize || 4,
slippage: config.slippage || 3, slippage: config.slippage || 3,
cooldownMs: config.cooldownMs || 20000, cooldownMs: config.cooldownMs || 20000,
marketDurationMin: config.marketDurationMin || 15, marketDurationMin: config.marketDurationMin || 15,