I was just asking. Apologies if anyone got offended xD
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.
public override bool Divest(double Amount)
{
Parent.updateStatus(string.Format("Divest {0:0.00000000}", Amount));
Instance.Divest(Amount,"");
System.Threading.Thread.Sleep(1500);
return true;
}
Bet amount Outcome Total Profit
1 LOSS -1
1 LOSS -2
1 LOSS -3
1 LOSS -4
1 WIN -3
2 WIN -1
2 WIN 1
roundprofit = 0
basebet = 1
nextbet = basebet
function dobet()
roundprofit += currentprofit
if (win) then
if (roundprofit < 0) then
nextbet = previousbet + basebet
else
nextbet = base
end
else
end
end
basebet = 0.00005000
nextbet = basebet
profitsincelastcycle = 0
roundprofit = 0
function dobet()
roundprofit += currentprofit
profitsincelastcycle += lastBet.profit
if (win) then
if (roundprofit < 0) then
nextbet = previousbet + basebet
print(profitsincelastcycle)
print(nextbet)
else
nextbet = base
print(profitsincelastcycle)
print(nextbet)
end
end
if (!win) then
nextbet = previousbet
print(profitsincelastcycle)
print(nextbet)
end
end
end
runsim(0.1,20)
Running 20 bets Simulation with starting balance of 0.1
-4E-06
4E-06
0
5E-05
5E-05
5E-05
0.0001
5E-05
5E-05
5E-05
0
5E-05
5E-05
5E-05
0
5E-05
-5E-05
5E-05
-0.0001
5E-05
-5E-05
0.0001
-0.00015
0.0001
-5E-05
0.00015
-0.0002
0.00015
-5E-05
0.0002
0.00015
5E-05
0.0001
5E-05
0.00015
5E-05
0.0001
5E-05
5E-05
5E-05
Betting Stopped!
Simulation finished. Bets:21 Wins:10 Losses:11 Balance:0.1001 Profit:0.0001 Worst Streak:140 Best Streak:40
basebet = 0.00005000
nextbet = basebet
profitsincelastcycle = 0
roundprofit = 0
chance = 49.5
function dobet()
roundprofit += currentprofit
profitsincelastcycle += lastBet.profit
if (win) then
if (roundprofit < 0) then
nextbet = previousbet + basebet
print ("WIN")
print(nextbet)
else
nextbet = base
print ("WIN")
print(nextbet)
end
end
if (!win) then
nextbet = previousbet
print ("LOSE")
print(nextbet)
end
end
end
if (win) then
if (roundprofit < 0) then
if ((previousbet + roundprofit) > 0) then
nextbet = previousbet
else
nextbet = previousbet + basebet
end
print ("WIN")
print(nextbet)
else
nextbet = base
print ("WIN")
print(nextbet)
if (roundprofit > 0) then
roundprofit = 0
end
end
end