LUA Scripts
Chance is 13.34% with a 25% increase on lost This is my first script and I tested this with 0.01 btc on PD RECOMMENDED TO HAVE 0.01 BTC ( Script will adjust basebet so no need to change anything :)
Recommended to stop once you make about 200k Sats
With a balance of 80 Doge was a balance of 217 and all merged into 0. you need something to change or not play for long. How many% you need to type to stop? And when can I start again
The one thing I forget to tell you. I set basebet = ..../18000000 (max 67 steps) The original is ..../180000 (max 47 steps) - Dangerously. The system may fail.
The same system as original above but display some statistical in console like Current Drawdown and Maximum Drawdown. Seuntjie, this statistical should be as standard in window "Simulate". chance = 13.34 bethigh = true basebet = balance/18000000 nextbet = basebet CurrentProgression = 0 CurrentDrawdown = 0 MaximumProgression = 0 MaximumDrawdown = 0 Spin = 0 function dobet() Spin += 1 if win then nextbet = basebet CurrentProgression = 0 CurrentDrawdown = 0 else nextbet = previousbet * 1.25 CurrentProgression += 1 CurrentDrawdown -= previousbet if CurrentDrawdown < MaximumDrawdown then MaximumProgression = CurrentProgression MaximumDrawdown = CurrentDrawdown end end print("") print("") print("CurrentProgression: "..CurrentProgression.." CurrentDrawdown: "..CurrentDrawdown) print("") print("MaximumProgression: "..MaximumProgression.." MaximumDrawdown: "..MaximumDrawdown) print("") print("Spin: "..Spin) print("Balance: "..balance) end
Just a simple calculator of progression. We can check how many steps our system survive until bankroll will finish. In console we can check Current progression, Maximum drawdown, Lowest balance. Lowest balance = Initial balance - Maximum drawdown. In that case system above survived 67 steps of progression. No matter how bankroll we used: bigger bankroll = bigger initial bet, always max 67 steps of progression. -- Tester of progressions chance = 49.50 basebet = balance/18000000 nextbet = basebet InitialBalance = balance LowestBalance = balance CurrentProgression = 0 MaximumDrawdown = 0 function dobet() CurrentProgression += 1 nextbet = previousbet * 1.25 LowestBalance -= previousbet MaximumDrawdown -= previousbet print("") print("") print("CurrentProgression: "..CurrentProgression) print("") print("InitialBalance: "..InitialBalance) print("MaxDrawdown: "..MaximumDrawdown) print("LowestBalance: "..LowestBalance) print("nextbet: "..nextbet) if LowestBalance < nextbet then print("") print("THE BANKROLL IS OVER !!!") print("") stop() end end