DonFinuchi
Active Member
So, I have been writing a little primitive Blackjack simulator. I have been running simulations based on 6 decks, S17, D9, DAS, No Surrender, No Peek. I have only implemented basic strategy. In the graph below, the x-axis represents rounds simulated in millions. The y axis represents the player edge, which I have calculated as follows.
Edge = (AccumulatedWinnings / AccumulatedLosses – 1) * 100 %
AccumulatedWinnings has been incremented when the player has won, and AccumulatedWinnings when the player have lost, and neither of them when player has pushed.
But, is this correct? I mean, for instance if I were to count pushes as both winnings and losses, both would be significantly larger and the simulated edge below would be closer to -0.64. But that’s probably not the case.
Am I at least trying to calculate the edge right?
Edge = (AccumulatedWinnings / AccumulatedLosses – 1) * 100 %
AccumulatedWinnings has been incremented when the player has won, and AccumulatedWinnings when the player have lost, and neither of them when player has pushed.
But, is this correct? I mean, for instance if I were to count pushes as both winnings and losses, both would be significantly larger and the simulated edge below would be closer to -0.64. But that’s probably not the case.
Am I at least trying to calculate the edge right?
Attachments
-
87 KB Views: 135
Last edited: