Hi. In v3 b8, how do I set a percentage of balance bets in a martingale?
Thanks!
There isn't a specific setting to set your starting bet for martingale based on a percentage of your balance. Here's a little lua script that should be able to do it in programmer mode:
function dobet()
if (win) then
nextbet=balance*(percentage/100.0)
else
nextbet = previousbet *2
end
end
To use this script, set the bot to use programmer mode,
Copy and paste this script into the code box.
either replace percentage in the script by the percentage you want, or, in the console execute: percentage = 0.0005
or whatever percentage you want to set it to
then, in the console, execute start() to start the bot, and stop() to stop the bot.
I tried the script and it creates the initial bet based on the percentage setting.
however after it wins, the initial bet starts off at "0" instead of the percentage of the bet.
Thanks again.