I'm trying to create a custom statistic to track how often the BB folds to a flop c-bet after calling a preflop raise from the SB in a 3-max game.
The scenario is as follows:
BTN folds preflop.
SB raises preflop.
BB calls the raise.
SB c-bets on the flop.
BB folds to the c-bet.
Here's what I have so far for counting folds to a c-bet:
- Code: Select all
sum(if[
tourney_hand_player_statistics.position = 8
AND tourney_hand_summary.cnt_players = 3
AND tourney_hand_summary.str_actors_p LIKE '9%'
AND tourney_hand_player_statistics.flg_p_face_raise
AND ((tourney_hand_player_statistics.amt_p_2bet_facing + tourney_hand_player_statistics.amt_blind) / tourney_blinds.amt_bb) >= 2
AND tourney_hand_player_statistics.enum_f_cbet_action = 'F'
, 1, 0])
- Code: Select all
sum(if[
tourney_hand_player_statistics.position = 8
AND tourney_hand_summary.cnt_players = 3
AND tourney_hand_summary.str_actors_p LIKE '9%'
AND tourney_hand_player_statistics.flg_p_face_raise
AND ((tourney_hand_player_statistics.amt_p_2bet_facing + tourney_hand_player_statistics.amt_blind) / tourney_blinds.amt_bb) >= 2
AND tourney_hand_player_statistics.flg_f_cbet_def_opp
, 1, 0])