-- 3X Chance Strategy by McGuyver chance = 33.00 multiplier=1.65 base=balance*0.00000125 --("Safe" at 0.04 BTC Bankroll) --> if you want a flat base, just replace this: base=0.00000002 prebet = 0.00000001 preroll=2 target=balance+0.00050000 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 base<0.00000002 then base=0.00000002 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 base=balance*0.00000125 --> --> if you want a flat base, just replace this: base=0.00000002 if wincount==1 then bethigh=false end if wincount==3 then bethigh=true wincount=0 end if balance>target then 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 e<0 then nextbet=previousbet*multiplier end if nextbet > hibet then hibet=nextbet end end end end function rstseed() if counter==500 then resetseed() counter=0 else counter+=1 end end