0% found this document useful (0 votes)
190 views3 pages

2X5 Strategy

This document outlines a 2X5 betting strategy that increases bets after losses using multipliers and a base factor. It tracks various stats like highest loss streak, average loss, highest bet, and resets the seed every 500 bets. The strategy increases bets after 1, 3, or 4 consecutive losses and stops betting once a target balance is reached.

Uploaded by

Yuli Kurniawan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
190 views3 pages

2X5 Strategy

This document outlines a 2X5 betting strategy that increases bets after losses using multipliers and a base factor. It tracks various stats like highest loss streak, average loss, highest bet, and resets the seed every 500 bets. The strategy increases bets after 1, 3, or 4 consecutive losses and stops betting once a target balance is reached.

Uploaded by

Yuli Kurniawan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

-- 2X5 Strategy by McGuyver

chance = 39.96
multiplier = 1.963

basefactor = 10 -- Basebet in satoshis


prebet = 0.00000001
preroll = 1

target = balance+0.00050000

nextbet = prebet
losecount = 0
betcount = 0
bethigh = true
highloss = 0
hibet = 0
totalloss = 0
totalwin = 0
wincount = 0
aveloss = 0
hbid = 0
counter = 0

e=0

--resetseed() -- If you want to reset the seed


--resetstats() -- If you want to reset the stats after a session, remove the
double dash in front.

function dobet()

e = currentstreak+preroll
-- ==counter ==

if counter==500 then

resetseed()
counter=0

else

counter+=1
end

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 base<prebet then
base = prebet
end

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

if balance>target then
stop()
ching()
print(" ")
print("TARGET REACHED :"..string.format("%.8f",target))
print("Current Balance : "..string.format("%.8f",balance))
print(" ")
end

else
losecount += 1
betcount += 1
nextbet = prebet

end

if losecount > highloss then


highloss = losecount
end

if losecount >1 then


nextbet = prebet
end

if losecount > 3 then


nextbet = prebet * basefactor
end

if losecount > 4 then


nextbet = previousbet*multiplier
end

if nextbet > hibet then


hibet=nextbet
end

end
end
end
end

You might also like