September 22, 2022 at 11:04 AM
resetseed()
resetstats()
bb = balance/500000
bank = 0
chance = 90
nextbet = bb
prof = 1e-8
tar = balance*2
target = balance+10
StopLossLimitStreakRound = 500.00000000
function dobet()
if profit < ((StopLossLimitStreakRound) * -1) then
stop()
end
if balance>target then
stop();
print("stop now")
end
chance = math.random(9*100,15*100)/100
nextbet = previousbet*1.05
bank=bank+currentprofit
if currentstreak == 3 then
bethigh = not bethigh
end
if bank >= prof then
bank = 0
nextbet = bb
end
if balance >= tar then
ching()
stop()
end
print("Profit : "..string.format("%.8f",profit))
end
