Post
Topic
Board Service Announcements (Altcoins)
Re: Just-Dice.com : Invest in 1% House Edge Dice Game
by
itod
on 24/11/2013, 01:21:21 UTC
It's just an "improved" Martingale betting system. It's still guaranteed to lose money if betting ad infinitum. I put together a quick script to simulate betting, I'm no statistician though, so I'm not sure what numbers are needed.
Code:
maxProfit = Decimal("287.47")
maxBet = maxProfit/(payout-Decimal(1))

...

            bet = min(maxBet, bet*Decimal(2))

Would you care to elaborate this part of the code above, whats that "287.47" MaxProfit number which limits the whales maximum bet? Shouldn't the size of his wallet be the only limiting factor?