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

Hit and Run Strategy

This script outlines a hit and run betting strategy for cryptocurrency betting. It sets an initial balance, profit target, and safety limit. It then uses random number generation and conditional logic to place bets, track wins/losses, increase or decrease the bet size, and stop once the profit target is reached. Key variables tracked include balance, bet amount, win/loss streaks, and total profit. The strategy aims to reach a target profit amount while maintaining the initial safety balance limit.

Uploaded by

Michal Červenka
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)
324 views3 pages

Hit and Run Strategy

This script outlines a hit and run betting strategy for cryptocurrency betting. It sets an initial balance, profit target, and safety limit. It then uses random number generation and conditional logic to place bets, track wins/losses, increase or decrease the bet size, and stop once the profit target is reached. Key variables tracked include balance, bet amount, win/loss streaks, and total profit. The strategy aims to reach a target profit amount while maintaining the initial safety balance limit.

Uploaded by

Michal Červenka
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

-- NOTES:

-- INITIAL BALANCE SHOULD AT LEAST BE 0,01 BTC


-- PLEASE SUBSCRIBE TO MY CHANNEL FOR MORE SCRIPTS:
https://www.youtube.com/channel/UCihSL797ho4Ae9IQ59VsspA
-- PLEASE DONATE IF YOU LIKE MY SCRYPT, THANKS!
-- My Donation Address > 33kx7iqfjSLuEAoW7EasLs83vontLmCvAE

-- Hit and Run

chance1 = 95.00
chance2=75.0
chance=chance1
bethigh = false
basebet2 = 0.00000500
basebet =0.00000100
multiplier=4.5
nextbet = basebet
safety=0.0
initbalance=(balance * safety)
limit=balance+0.20000000
betcount=0
counter=0
counter2=0
lostbet=0.00001500
highbet=0
high=0
low=0
totalstreak=0
totalloss=0
totalwin=0
wincount=0
resetstats()
resetseed();

-- SET PROFIT TARGET


profittarget= balance+0.00010000 -- EDIT THIS TO THE AMOUNT OF PROFIT YOU WANT TO
REACH

print("TARGET PROFIT")
print(profittarget)

print("Safety Balance Limit =")


print(initbalance)

function dobet()

randomizer()

if balance > limit then


print("Balance Over the Limit ")
ching();
stop();
else
counter+=1
print(counter)
end
if balance < initbalance then

alarm();

print("Initbalance =")
print(initbalance)

print("Balance")
print(balance)

print("Emergency Recovery")

print("Large Bet Amount Lost!")

print("Bet Half of Balance")

chance = 90.00
nextbet = basebet
initbalance=(balance)*safety

-- stop();

end

rstseed()

if (win) then
wincount+=1
if wincount>totalwin then totalwin=wincount end
chance = chance1
nextbet = basebet
initbalance = balance * safety
print(" ")
print("High : "..high.." / ".."Low : "..low)
print("Highest Win Streak : "..totalwin)
print("Highest Loss Streak : "..totalloss)
print("Highest Total Loss Streak : "..string.format("%.8f",
totalstreak))
print("Total Profit : "..string.format("%.8f", profit))
print(" ")
losscount=0
else

losscount+=1
wincount=0
if chance == chance2 then
nextbet = previousbet * multiplier
else
chance = chance2
nextbet = basebet2
betcount=betcount+1
end

if nextbet > totalstreak then totalstreak+=nextbet end


if losscount>totalloss then totalloss=losscount end
end

if (balance) >= profittarget then


alarm()
print("Your Balance is ") print(balance)
print(" ")
print("TARGET ACHIEVED!!!")
print(" ")
print("You Won ") print(profit) print(" for this Session")
print(" ")
print(" ")
ching();
stop()
end

end

function betroll()
if (lastBet.roll < chance2) then
low += 1
end

if (lastBet.roll > (99.99 - chance2)) then


high += 1
end

end

function randomizer()

r=math.random(2)

if r==2 then
bethigh=true
else
bethigh=false
end

end

function rstseed()

if counter2>500 then

resetseed()
counter2=0
low=0
high=0

else

counter2+=1

end
end

You might also like