Fold to F Cbet
Posted: Wed Sep 06, 2023 3:16 pm
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?
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?