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:
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):
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):
calcReturns(100, 1941.9)
Yearly returns of 1 btc: 0.15136350301096296 btc
It gives, for 2020 : around 750 btc / day for bab and 208 for bustadice (I took the total wagered today and subtracted the total in Jan 1st and divided by 365).