Page 1 of 1

BBvsSB fold to Tcbet %potsize

PostPosted: Fri Oct 23, 2020 9:10 am
by G1PoQ
Hello guys im trying to create a custom stat for BB vs SB situation:

so i would like to have BB fold to cbet from SB on the turn when the cbet is less than 65% of the pot and same stat with cbet more than 65% of the pot.


For 65%-:

(LDB_cnt_t_cbet_def_action_fold_0_65 / LDB_cnt_t_cbet_def_opp_0_65) * 100

LDB_cnt_t_cbet_def_action_fold_0_65:

sum(if[tourney_hand_player_statistics.enum_t_cbet_action='F'
AND tourney_hand_player_statistics.val_t_bet_facing_pct <= 65
AND tourney_hand_player_statistics.position=8
AND tourney_hand_player_statistics.flg_blind_def_opp
AND lookup_actions_p.action='C'
AND tourney_hand_player_statistics.val_p_raise_aggressor_pos=9 , 1, 0])

LDB_cnt_t_cbet_def_opp_0_65:

sum(if[tourney_hand_player_statistics.flg_t_cbet_def_opp
AND tourney_hand_player_statistics.val_t_bet_facing_pct <= 65
AND tourney_hand_player_statistics.position=8
AND tourney_hand_player_statistics.flg_blind_def_opp
AND lookup_actions_p.action='C'
AND tourney_hand_player_statistics.val_p_raise_aggressor_pos=9 , 1, 0])

Stat for 65%+:

(LDB_cnt_t_cbet_def_action_fold_65plus / LDB_cnt_t_cbet_def_opp_65plus ) * 100

LDB_cnt_t_cbet_def_action_fold_65plus:

sum(if[tourney_hand_player_statistics.enum_t_cbet_action='F'
AND tourney_hand_player_statistics.val_t_bet_facing_pct > 65
AND tourney_hand_player_statistics.position=8
AND tourney_hand_player_statistics.flg_blind_def_opp
AND lookup_actions_p.action='C'
AND tourney_hand_player_statistics.val_p_raise_aggressor_pos=9 , 1, 0])

LDB_cnt_t_cbet_def_opp_65plus:

sum(if[tourney_hand_player_statistics.flg_t_cbet_def_opp
AND tourney_hand_player_statistics.val_t_bet_facing_pct > 65
AND tourney_hand_player_statistics.position=8
AND tourney_hand_player_statistics.flg_blind_def_opp
AND lookup_actions_p.action='C'
AND tourney_hand_player_statistics.val_p_raise_aggressor_pos=9 , 1, 0])

So i would like to be sure i dont have mistake.

Thank you so much

Re: BBvsSB fold to Tcbet %potsize

PostPosted: Fri Oct 23, 2020 12:47 pm
by Flag_Hippo
Those expressions look OK to me - if you want to check some hands you can test your expressions using one of the methods described in this thread. Also bear in mind that val_t_bet_facing_pct includes the bet amount so, for example, if a player bets $100 into a $100 pot then the bet faced by the other player is 50% of the pot (100/200). This definition is necessary in order to distinguish between situations where a bet has been called in between as that changes the pot odds.

Re: BBvsSB fold to Tcbet %potsize

PostPosted: Fri Oct 23, 2020 1:54 pm
by G1PoQ
Ok thank you for your fast response.so is that possible to say that the bet is less than 65% of the pot in the middle without additioning the bet.

per exemple:

PF: SB raise 50 BB call 50
Flop : Pot=100
SB cbet 50
BB call 50
Turn: Pot=200
SB cbet 100 (50%)
BB fold

if i understand in my stat here the BB face to 33% pot and not 50% like i want.

Thanks

Re: BBvsSB fold to Tcbet %potsize

PostPosted: Sat Oct 24, 2020 5:28 am
by Flag_Hippo
When a player bets 65% of the pot the player facing that bet directly has pot odds of:

(65/165) * 100 = 39.4%

so that's what you would need to use.

highfalutin