Page 1 of 1

Fold to F Cbet

PostPosted: Wed Sep 06, 2023 3:16 pm
by DANNI BASTOS
Hello,

I took as a basis the ready statistic "Fold to F CBet" to make my own "Fold to F CBet 8-10".

I would like a statistic that informs the percentage of times the player folds to Cbet on the flop between the effective stack of 8 to 10bb, being in the position of the BB in HU. But in addition, I would like to specify the cbet value in percentage that the player is facing, for Cbet<75% and Cbet>=75%.

Fold to F CBet 8-10 = (cnt_f_cbet_def_action_fold_8a10 / cnt_f_cbet_def_opp_8a10) * 100

cnt_f_cbet_def_action_fold_8a10
sum(if[tourney_hand_summary.cnt_players = 2 and tourney_hand_player_statistics.position=8 AND
((tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 8 AND 9.99) AND tourney_hand_player_statistics.enum_f_cbet_action='F', 1, 0])

cnt_f_cbet_def_opp_8a10
sum(if[tourney_hand_summary.cnt_players = 2 and tourney_hand_player_statistics.position=8 AND
((tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 8 AND 9.99) AND tourney_hand_player_statistics.flg_f_cbet_def_opp, 1, 0])

I'm not sure how to specify the cbet percentage the player is facing.

Someone help me?

Re: Fold to F Cbet

PostPosted: Thu Sep 07, 2023 5:07 am
by Flag_Hippo
The size of bet faced as a percentage of the pot is:

Code: Select all
tourney_hand_player_statistics.val_f_bet_facing_pct

Bear in mind that the size of bet faced by a player includes the bet amount. For example if one player bets $10 into a $10 pot then the bet faced by the other player is 50% of the pot (10/20). This definition is necessary in order to distinguish between situations where a bet has been called before the player or not as that changes the pot odds.

Re: Fold to F Cbet

PostPosted: Thu Sep 07, 2023 8:04 am
by DANNI BASTOS
To reinforce, I created the same statistic but I am in doubt if it is correct, also because the values are low.

The statistic is "Fold to F CBet 10+", it is to count as a percentage when the HUBB player, with an effective stack of 10bb - 100bb, folds on the flop to a cbet (less than or equal to 75%) in a limped pot

formula: (cnt_f_cbet_def_action_fold_10 / cnt_f_cbet_def_opp_10) * 100

cnt_f_cbet_def_action_fold_10more
sum(if[tourney_hand_summary.cnt_players = 2 and
(tourney_hand_player_statistics.val_f_bet_facing_pct <=40) and tourney_hand_player_statistics.position=8 AND
((tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 10 AND 1000) AND tourney_hand_player_statistics.enum_f_cbet_action='F', 1, 0])

cnt_f_cbet_def_opp_10more
sum(if[tourney_hand_summary.cnt_players = 2 and
(tourney_hand_player_statistics.val_f_bet_facing_pct <= 40) and
tourney_hand_player_statistics.position=8 AND
((tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 10 AND 100) AND tourney_hand_player_statistics.flg_f_cbet_def_opp, 1, 0])

Can anyone let me know if the statistic is correct?

Re: Fold to F Cbet

PostPosted: Thu Sep 07, 2023 12:12 pm
by Flag_Hippo
DANNI BASTOS wrote:in a limped pot

You didn't mention this was for a limped pot in your original post so please note that it's not possible for any player to make or face a CBet in a limped pot as there is no preflop aggressor so anything using cbet in your expressions isn't going to be suitable for use in a custom statistic for limped pots.

Re: Fold to F Cbet

PostPosted: Thu Sep 07, 2023 1:38 pm
by DANNI BASTOS
Flag_Hippo wrote:
DANNI BASTOS wrote:in a limped pot

You didn't mention this was for a limped pot in your original post so please note that it's not possible for any player to make or face a CBet in a limped pot as there is no preflop aggressor so anything using cbet in your expressions isn't going to be suitable for use in a custom statistic for limped pots.


alright, forgive me.
if I'm going to consider the statistic for MR pot. is she correct?

Re: Fold to F Cbet

PostPosted: Fri Sep 08, 2023 4:19 am
by Flag_Hippo
DANNI BASTOS wrote:if I'm going to consider the statistic for MR pot. is she correct?

What is MR? Do you mean a minraised pot where the 2Bet was exactly 2bb? Currently your statistic counts all cbets faced (of your specified size) in any raised pot.

Re: Fold to F Cbet

PostPosted: Sun Sep 17, 2023 2:40 am
by DANNI BASTOS
right, thank you very much