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

Crypto Betting Strategy Guide

The document outlines a betting strategy with specific base bets and profit targets based on the current balance and market trends. It emphasizes playing only during uptrends and provides guidelines for adjusting bets based on winning streaks. The code includes functions for managing bets and stopping conditions based on profit goals and market stability.

Uploaded by

minerjack60
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)
36 views1 page

Crypto Betting Strategy Guide

The document outlines a betting strategy with specific base bets and profit targets based on the current balance and market trends. It emphasizes playing only during uptrends and provides guidelines for adjusting bets based on winning streaks. The code includes functions for managing bets and stopping conditions based on profit goals and market stability.

Uploaded by

minerjack60
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

--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

You might also like