Skip to main content

Auto Bet Strategy Evaluator

Decides whether an auto-bet run should continue, and what to stake next.

Feed it the last round's stake and win after every round. It tracks profit and loss across the run and applies your stop conditions and progression rules.

Should Continue goes false when a stop condition is met — profit target, loss limit or round count. The progression percentages adjust the next stake after a win or a loss; leave them at zero for flat betting.

Reset starts a new run.

Inputs

Actions

SignalDescription
DoRecords the last round and evaluates the strategy.
ResetStarts a new auto-bet run, clearing profit, loss and round count.

General

DataDescription
last win amount (number)The previous round's win. Zero for a loss.
last bet amount (number)The previous round's stake.
base bet (number)The stake the progression starts from.
max rounds (number)Stop after this many rounds. Zero for no limit.
stop on profit (number)Stop once profit reaches this. Zero for no limit.
stop on loss (number)Stop once losses reach this. Zero for no limit.
increase bet on loss % (number)Percentage to raise the stake after a loss. Zero for flat betting.
increase bet on win % (number)Percentage to raise the stake after a win. Zero for flat betting.

Outputs

DataDescription
next bet amount (number)What to stake next.
should continue (boolean)False once a stop condition has been met.
SignalDescription
DoneSent when the node has finished, on success and on failure alike.