0% found this document useful (0 votes)
27 views2 pages

Waynes 190324 x001 - 01

Uploaded by

Anny Hutchinson
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)
27 views2 pages

Waynes 190324 x001 - 01

Uploaded by

Anny Hutchinson
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/ 2

ch1 = 0.

088
ch2 = 88
div1 = 1e6
div2 = 1e7
div3 = 181420
basebet = balance / div1
if basebet<minbet then basebet=minbet end
nextbet = basebet
bethigh = true
b1 = 1
b2 = 2
m1 = 1.05
m2 = 1.25
c = 0.70
d = 0.80
e = 1.22
f = 1.33
maxbet = balance / div3

if_profit = balance / div2


wincount = 0
losecount = 0
profit1 = 0
target = 30

function kellyCriterion(probability, odds)


local p = probability
local q = 1 - p
local b = odds - 1 -- Convert odds to net odds (subtract 1)
return (p * b - q) / b
end

function dobet()
div1 = 1e6
basebet = balance / div1
if basebet<minbet then basebet=minbet end
profit1 = profit1 + currentprofit
print(" ")
print(" ")
print("donate xrp tag-100299654...adresse-
rhSzJtTrgfaTAqtqqVNQNgMghauCCwN5K6....")
print("m1:"..m1)
print("m2:"..m2)
print(" ")
print("profit:"..currentprofit)
print("balance:"..balance)
print(" MONACO FUTURE BOT 2021 ")
print("target:"..target)
print("Win Count:"..wincount)
print("Lose Count:"..losecount)

m2 = math.random(e * 100.00, f * 100.00) / 100


m1 = math.random(c * 100.00, d * 100.00) / 100
chance = math.random(ch1 * 100.0, ch2 * 100.0) / 100

-- Calculate Kelly Criterion for the current chance and payout


local kellyFraction1 = kellyCriterion(chance, m1)
local kellyFraction2 = kellyCriterion(chance, m2)
-- Adjust next bet based on Kelly Criterion
-- Set bet direction based on previous results
if win then
wincount = wincount + 1
if (wincount >= 0.8 * losecount) then
nextbet = basebet * kellyFraction1
bethigh = false
end
else
losecount = losecount + 1
if (0.8 * losecount > wincount) then
nextbet = basebet * kellyFraction2
bethigh = true
end
end

-- Check if it's time to reset the bot


if (currentprofit > (if_profit - profit1)) then
print(":::::::::::::::::::::::::bot reset reseting seed")
div1 = 1e6
basebet = balance / div1
if basebet<minbet then basebet=minbet end
wincount = 0
losecount = 0
profit1 = currentprofit
--nextbet = basebet
resetseed()
end

-- Stop if target is reached


if balance > target then
stop()
end

-- Ensure minimum bet size


if nextbet < 0.0000010 then
nextbet = basebet
if basebet<minbet then basebet=minbet end
end
end

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy