mirror of
https://github.com/multipleof4/KalBot.git
synced 2026-03-17 05:51:02 +00:00
Refactor: Reduce default betSize from 2 to 1
This commit is contained in:
@@ -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
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user