Discuss how to create custom stats, reports and HUD profiles and share your creations.
Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
by DANNI BASTOS » Sun Sep 17, 2023 2:54 am
I have a question regarding the 'Fold to T CBet' statistic.
I would like a statistic that would tell me at what percentage the player folds to a bet on the Turn after calling a flop cbet from the aggressor preflop.
for my case:
table: HU
player position: BB
aggressor: SB
effective stack: 10 to 100bb
aggressor flop cbet size: <=66%
my stat: 'Fold to T CBet 10+'
expression: (cnt_t_cbet_def_action_fold_10mais / cnt_t_cbet_def_opp_10mais) * 100
where: cnt_t_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 100) AND tourney_hand_player_statistics.enum_t_cbet_action='F', 1, 0])
e: cnt_t_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_t_cbet_def_opp, 1, 0])
I am grateful
-
DANNI BASTOS
-
- Posts: 43
- Joined: Mon Aug 07, 2023 4:09 pm
by DANNI BASTOS » Sun Sep 17, 2023 3:05 am
I would like to know if, according to the expression, what I am requesting is correct?
-
DANNI BASTOS
-
- Posts: 43
- Joined: Mon Aug 07, 2023 4:09 pm
by WhiteRider » Sun Sep 17, 2023 4:41 am
That all looks good, but I believe it is possible to face a turn cbet if the player raised the flop cbet, was re-raised and called. That would also continue the other player's aggression as they were the final aggressor on the flop, so would still allow a continuation bet on the turn.
Therefore you may want to consider adding in:
tourney_hand_player_statistics.enum_f_cbet_action='C'
..as well, if you want to exclude that situation.
-
WhiteRider
- Moderator
-
- Posts: 54016
- Joined: Sat Jan 19, 2008 7:06 pm
- Location: UK
by DANNI BASTOS » Sun Sep 17, 2023 10:36 am
Perfect! for my case I would really like player [BB]'s actions to be just:
C [preflop]
XC [flop]
XF [turn]
It would then look like this:
cnt_t_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.enum_f_cbet_action='C' 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.enum_t_cbet_action='F', 1, 0])
cnt_t_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.enum_f_cbet_action='C' 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_t_cbet_def_opp, 1, 0])
Everything ok now?
-
DANNI BASTOS
-
- Posts: 43
- Joined: Mon Aug 07, 2023 4:09 pm
by WhiteRider » Sun Sep 17, 2023 11:40 am
Yes, that looks good to me.
-
WhiteRider
- Moderator
-
- Posts: 54016
- Joined: Sat Jan 19, 2008 7:06 pm
- Location: UK
Return to Custom Stats, Reports and HUD Profiles
Users browsing this forum: No registered users and 11 guests