-- Dogecoin - Simple Martingale Doubler
-- Uses A Safer 1.08x Payout For Long Term Stable Balance Growth
-- On Loss A Progression Of 2 Low But Riskier Payout Increases Are Used To Recover
-- Recommended Starting Balance Minimum 1000 Dogecoin (2000+ Balance Is Best)
-- Adjust Your Target Reward Amount Accordingly (Recommended Is 25% - 50% Of
Starting Balance)
chance1 = 91.6667 -- 1.08x payout
chance2 = 47.1429 -- 2.1x payout
chance3 = 50.7692 -- 1.95x payout
multiplier=2
multiplier2=2.25
base=1.00000000
prebet = 1.00000000
preroll=2
target=balance+500.00000000
nextbet = prebet
losecount = 0
betcount = 0
bethigh=false
highloss=0
hibet=0
totalloss=0
totalwin=0
wincount=0
aveloss=0
hbid=0
counter=0
e=0
resetseed()
--resetstats()
function dobet()
e=currentstreak+preroll
--rstseed()
print(" ")
print("Total Bet : "..betcount)
print("Current Streak Loss : "..losecount)
print("Highest Loss Streak : "..highloss)
print("Average Loss Streak : "..string.format("%.2f",aveloss))
print("Highest Bet : "..string.format("%.8f",hibet))
print("Highest Win Bet ID : "..hbid)
print("Profit : "..string.format("%.8f",profit))
print(" ")
print("Bet Amount : "..string.format("%.8f",nextbet))
print("Current Balance : "..string.format("%.8f",balance))
print(" ")
if win then
if highloss == losecount then
hbid=lastBet.Id
end
nextbet = prebet
wincount+=1
totalwin+=1
totalloss+=losecount
aveloss=totalloss/totalwin
losecount = 0
betcount += 1
base=1.00000000
if wincount==1 then
bethigh=false
end
if wincount>=1 then
bethigh=true
end
if balance>=target then
print("Congrats Target Reward Balance Reached")
print(" ")
stop()
end
else
losecount += 1
betcount += 1
nextbet = prebet
end
if losecount > highloss then
highloss = losecount
end
if e==0 then
nextbet = base
end
if losecount==0 then
nextbet = base
chance = chance1
end
if losecount==1 then
nextbet=previousbet*multiplier
chance = chance2
end
if losecount>=2 then
nextbet=previousbet*multiplier2
chance = chance3
end
if nextbet > hibet then
hibet=nextbet
end
if nextbet > balance then
nextbet = base
chance = chance1
losecount=0
print("Sorry not enough balance resetting back to base")
print(" ")
if base > balance then
print("Sorry not enough balance to continue stopping session")
print(" ")
stop()
end
end
end
end
function rstseed()
if counter==500 then
resetseed()
counter=0
else
counter+=1
end
end