Post
Topic
Board Gambling
Merits 8 from 2 users
Re: bustabit – The original crash game
by
RHavar
on 22/12/2020, 16:59:04 UTC
⭐ Merited by DarkStar_ (5) ,malevolent (3)
Investing in bustadice is an insanely good deal right now. Wouldn't be surprised to see the bankroll at 3K+ BTC within a few weeks.

Interesting. Let me try roughly calculate it:

Quote
function calcReturns(dailyWagered, siteBankroll) {
  const commission = Math.min((1 + siteBankroll) / 10e3, 1);
  const stake = 1 / (1 + siteBankroll);
  let ev = dailyWagered*365 * 0.01 * stake

  ev -= ev * commission


  console.log("Yearly returns of 1 btc: ", ev, " btc");
}

It's not a perfect formula, but i think it's correct enough (?!).

So trying for Bustabit (i'm just guestimating 400 btc a day volume, not sure how accurate that is):
Quote
calcReturns(400, 5021)
Yearly returns of 1 btc:  0.14472082835523695  btc

and trying for Bustadice (i'm just guestimating 100 btc a day volume, not sure how accurate that is):
Quote
calcReturns(100, 1941.9)
Yearly returns of 1 btc:  0.15136350301096296  btc