I came up with a new strategy that I think will win over the course of 1 Billion rolls. I found out that Wizard of Odds used to offer such a challenge for other casino games such as Roulette and Blackjack.
The system requires a large balance and very small bet amounts and is not a Martingale. Essentially, this is a strategy that is perfect for automated betting. Whenever I've tried a similar version, given a fair balance I've never lost. However, I also used larger bets and had a smaller bankroll than this strategy requires.
I found a similar site at satoshidicebreaker, but the unit spread is too small, and only allows you to bet at 50%.
Sure, there's a chance this will lose in a session, but I think the odds are astronomically low. Like way lower than .505
24.
I'm interested if there is a website that lets you test this theory, like where you can input a starting balance, a bet size, and a winning percentage.
The code would look something like this
var balance = 1000000000;
var bets = 0;
var betSize = 10;
var loseMultiplier = .112;
var multiplier = .3;
while (balance > 0) {
if (result == "win") {
balance += betSize;
betSize = 10;
}
else {
betSize += (betSize * loseMultiplier);
balance -= betSize;
}
bets++;
}
console.log("You have lasted " + bets + " bets");
I dont know of any but if you can code then why not create the code to test your method yourself? Since I find it difficult to believe that even if a site existed where you could test your method I doubt they are going to allow you to conduct a billion rolls just to test your method.