It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
... stuff ...
winStreakProfit = 0
... other stuff ...
function dobet ()
if (win) then
winStreakProfit = winStreakProfit + lastBet.profit
if winStreakProfit >= 0.0005 then
nextbet = basebet
else
nextbet = #insertBetStuffHere
end
... other win stuff ...
else
winStreakProfit =0
... other loss stuff ...
end
end
chance=49.5
basebet=0.00000001
nextbet=basebet
resetseed()
lossCounter=0
function dobet()
if win then
nextbet=previousbet
if lossCounter >= 10 then
nextbet=basebet
lossCounter=0
end
else
I like your script!! However, how would it be possible to start the same script but doing a prebetting? I mean, only after 5 row red sreak betting at basebet for example?
lossCounter=lossCounter+1
nextbet=previousbet*2
end
end
base=1
test=2
max=100
min=0
startbal=balance
stoploss=startbal+10
chance=49.5
nextbet=base
function dobet()
--do your stuff here
if balance>stoploss then
base=1
test=2
max=100
min=0
startbal=balance
stoploss=startbal+10
chance=49.5
nextbet=base
end
--do your other stuff here
end
--declare your reset function
function reset()
base=1
test=2
max=100
min=0
startbal=balance
stoploss=startbal+10
chance=49.5
nextbet=base
end
--call the reset function before you start the script to initialize and instantiate your variables
reset()
function dobet()
--do your stuff here
if balance>stoploss then
--call the reset function to reset your script.
reset()
end
--do your other stuff here
end