--READ ME!!!
--1 coin to play basebet at 0.00000512
--10 coin to play basebet at 0.00005120
--100 coin to play basebet at 0.00051200
--stop take profit at 0.00512000 if basebet=0.00000512
--stop take profit at 0.05120000 if basebet=0.00005120
--stop take profit at 0.51200000 if basebet=0.00051200
--play only you see uptrend on the chart!!!! for the first 500bets
--if you see chart are flat stop and re-start. This mean unstable
-----------------------------------------------------------
-----------------------------------------------------------
chance=49.5
basebet=0.00000512 -- at least 1 coin to play basebet at 0.00000512
nextbet=basebet
bethigh=false
resetstats()
target=balance+0.00512 -- profit stop base on basebet
-----------------------------------------------------------
-----------------------------------------------------------
function dobet()
print("")
print(" --- Code By Chris ---") -- you can modify to your own name
print(" BETTING CURRENCY : ".." --- "..string.upper(currency).." --- ")
-- this is showing your current currency
print("")
if win then nextbet=basebet end
--
if balance>=target then stop() alarm() end
--
if currentstreak>=2 then nextbet=basebet end
if currentstreak>=2 then resetstats() alarm() end
if currentstreak>=-1 then nextbet=basebet end
if currentstreak==1 then
nextbet=wagered
end
-----------------------------------------------------------
-----------------------------------------------------------
end
end