Simulate every possible blackjack scenario to discover the best move, generate custom basic strategy tables, and calculate the expected value of any s

Search code, repositories, users, issues, pull requests...

submited by
Style Pass
2024-10-09 15:00:05

Simulate every possible blackjack scenario to discover the best move, generate custom basic strategy tables, and calculate the expected value of any strategy—all tailored to your ruleset.

The most comprehensive open-source tool for blackjack strategy generation and evaluation. Provides the most detailed insights available, all while being easily customizable to different rule sets.

They are stored in data/ and include a basic strategy (RULES_basic_strategy.csv) and deviations for each true count from -10 to +10 (RULES_tc_plus/minus_X.csv).

While this program tries to be as accurate as possible, there may be some problems, so one should not base their blackjack strategy on this program. This program was written to investigate blackjack theoretically, using combinatorial/probabilistic simulators and monte carlo simulations.

The Best Move Analysis doesn't take into account the cards the other hand gets when hitting after a split (which is better than most calculators, as most don't even take the first card the other hand gets after a split into account while this calculator does). It can also waste a few splits since it either gives all of the remaining splits to the first hand or the second one, and cannot give some to the first and some to the second. These minor problems are very unlikely to cause the engine to make a wrong move.

Leave a Comment