0% found this document useful (0 votes)
15 views1 page

One More

Uploaded by

healthwshop
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)
15 views1 page

One More

Uploaded by

healthwshop
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/ 1

basebet = 0.

00007
chance = 49.5

nextbet = basebet

function dobet()
if balance >10000 then
stop()
end

if profit > 0 then

nextbet = basebet

end

if currentstreak < 0 and profit < 0.0000000001 then

nextbet = basebet
end

if currentstreak > 0 and profit < 0.0000000001 then

nextbet = -1*profit* 3.5

end
if currentstreak > 1 and profit < 0.0000000001 then

nextbet = basebet

end

if nextbet < basebet then


nextbet = basebet
end

-- Stop loss at 10% of the total balance.


if balance <= (balance + profit) * 0.9 then
stop()
end
end

You might also like