-
Notifications
You must be signed in to change notification settings - Fork 527
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calculations of reactions to opponents' actions (call, fold) #212
Comments
Basic information on the topic: Pot odds in poker are the ratio between the current pot size and the price of your call. For example, 3 to 1 (3:1); The pot odds formula is as follows: If the pot odds are better (greater) than the probability of you winning the hand, then 1/4 bank: 5:1 Converting pot odds from ratio to percentage (essentially to equity) You should then compare this value to the equity of your hand to see if you can continue to be profitable. 1:1 = 50% Bet sizing Required equity to call Situation:
Player1_equity_bet = 25% (bet equity!!! not absolute equity of opponent's range!!!) 4.FOLD Player1_BET_equity= 41.66% (not the equity of the entire range!!!! but the equity of the bet) For coding Pot size before opponent's bet = BANK_start if flop Hero_EQ > BET_equity : CALL |
This topic will discuss the issues of calculating the actions of opponents to make a decision on calling or folding a bet, to make changes to the strategy code. Reasoned criticism of all material and calculations is strongly encouraged.
The text was updated successfully, but these errors were encountered: