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.
House Edge: 0.05
Base Bet: 0.00001000
Number of Rolls: 100000
Total BTC: -0.43114500
Total BTC Wagered: 8.03352000
House Edge: 0.01
Base Bet: 0.00001000
Number of Rolls: 100000
Total BTC: -0.05487440
Total BTC Wagered: 7.97234000
House Edge: 0.00
Base Bet: 0.00001000
Number of Rolls: 100000
Total BTC: 0.02358000
Total BTC Wagered: 7.96112000
def hey_you_guys_sim(num_sims, bet_type, multiplier = 0.5, house_edge = 0.01):
base_bet = 0.00001000
start_bet = base_bet
bet = base_bet
total = 0
total_bet = 0
cur_round = 1
num_wins = 0
for i in range(num_sims):
if cur_round == 31 or num_wins == 3:
bet = base_bet
start_bet = base_bet
cur_round = 1
num_wins = 0
results = roll(bet, multiplier, bet_type, house_edge)
total -= bet
total_bet += bet
if results[0] == True:
total += results[1]
print('W: {:1.8f}'.format(bet))
bet = bet * 2.0
start_bet = start_bet * 2.0
num_wins += 1
else:
print('L: {:1.8f}'.format(bet))
bet = bet + start_bet
cur_round += 1
print('House Edge: {:1.2f}'.format(house_edge))
print('Base Bet: {:1.8f}'.format(base_bet))
print('Number of Rolls: {}'.format(num_sims))
print('Total BTC: {:1.8f}'.format(total))
print('Total BTC Wagered: {:1.8f}'.format(total_bet))