Hello, based on 'Fold to R Cbet' I created a statistic in which the player folds to cbet river and the play was:
preflop: C
flop: XC
turn: XC
river: XF
table HU
the player is in BB
SB minraised preflop
stack eff. 10-100bb
Fold to R CBet 10+
(cnt_r_cbet_def_action_fold_10more / cnt_r_cbet_def_opp_10more) * 100
cnt_r_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.enum_t_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_r_cbet_action='F', 1, 0])
cnt_r_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.enum_t_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_r_cbet_def_opp, 1, 0])
Could you please analyze and let me know if everything is correct?