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

Hit and Run Strategy

This script outlines a hit and run betting strategy for cryptocurrency betting with the following key points: 1. It sets an initial balance, profit target, and safety balance limit. 2. It uses random number generation and variable bet sizes to determine wins and losses, tracking various stats over many bets. 3. If the balance drops below the safety limit, it increases the chance of winning and decreases the bet size for recovery. 4. It stops once either the profit target is reached or the balance exceeds the set limit.

Uploaded by

Đức Lê
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)
186 views3 pages

Hit and Run Strategy

This script outlines a hit and run betting strategy for cryptocurrency betting with the following key points: 1. It sets an initial balance, profit target, and safety balance limit. 2. It uses random number generation and variable bet sizes to determine wins and losses, tracking various stats over many bets. 3. If the balance drops below the safety limit, it increases the chance of winning and decreases the bet size for recovery. 4. It stops once either the profit target is reached or the balance exceeds the set limit.

Uploaded by

Đức Lê
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

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