There seems to be a recurring theme to the most recent questions... I will look into it!
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.
if currentstreak==-3 then
chance = 50
basebet = 0.0000001
nextbet = 0.0000001
bethigh = true
martingalebasebet = 0.000005
currentmartingalebet = martingalebasebet
multiplier = 2
ismartingale = false
function dobet()
if (currentstreak == -3) then
-- we've had 3 losses in a row, martingale time!
print("Martingale Time!")
print("currentBet = " .. currentmartingalebet)
nextbet = currentmartingalebet
ismartingale = true
elseif (win and ismartingale) then
-- martingale bet won, reset
print("Martingale WIN! - Resetting")
currentmartingalebet = martingalebasebet
ismartingale = false
nextbet = basebet
elseif (ismartingale) then
-- martingale bet lost
currentmartingalebet = currentmartingalebet * multiplier
print("Martingale Loss! - Increasing to: " .. currentmartingalebet)
ismartingale = false
nextbet = basebet
else
nextbet = basebet
end
end
if currentstreak==-3 then
chance = 50
basebet = .0000001
nextbet = .0000001
bethigh = true
losecount = 0
bet1 = 0.000005
bet2 = 0.000010
function dobet()
if (win) then
nextbet = basebet
losecount = 0
else
nextbet = basebet
if (currentstreak==-3) then
losecount += 1
end
if currentstreak==-4 then
nextbet = basebet
end
if (losecount == 1) and (currentstreak==-3) then
nextbet = bet1
end
if (losecount == 2) and (currentstreak==-3) then
nextbet = bet2
end
end
end
end
if currentstreak==-3 then
--this is exactly 3 losses is a row, do something here
else
--every bet that is NOT directly after a losing streak of exactly 3 bets will go in here.
end
if currentstreak==-3 then
chance = 50
basebet = .0000001
nextbet = .0000001
bethigh = true
losecount = 0
bet1 = 0.000005
bet2 = 0.000010
function dobet()
if (win) then
nextbet = basebet
losecount = 0
else
nextbet = basebet
if (currentstreak==-3) then
losecount += 1
end
if currentstreak==-4 then
nextbet = basebet
end
if (losecount == 1) and (currentstreak==-3) then
nextbet = bet1
end
if (losecount == 2) and (currentstreak==-3) then
nextbet = bet2
end
end
end
end
if currentstreak==-3 then
chance=49.5
multiplier=2
base=0.00000010 -- this is to be a minimum bet, to bet all the time and wait for an opportunity
realbet=0.0005 -- this is to be the first real bet of martingale
function dobet()
if win then
nextbet=base
else
nextbet=previousbet*multiplier
end
end
if currentstreak==-3 then
chance=49.5
multiplier=2
base=0.00000010 -- this is to be a minimum bet, to bet all the time and wait for an opportunity
realbet=0.0005 -- this is to be the first real bet of martingale
function dobet()
if win then
nextbet=base
else
nextbet=previousbet*multiplier
end
end