by kraada » Tue Mar 20, 2012 4:24 pm
"Postflop Total Aggression Frequency" in PT4 is called Total AFq and is available by default.
To create Flop CBet in 4Bet+ Pot create two new columns in the Columns Page (you'll want these to be Players Columns).
cnt_f_cbet_4b_pot: sum(if[ char_length(cash_hand_summary.str_aggressors_p) >= 4 and cash_hand_player_statistics.flg_f_cbet, 1, 0])
cnt_f_cbet_opp_4b_pot: sum(if[ char_length(cash_hand_summary.str_aggressors_p) >= 4 and cash_hand_player_statistics.flg_f_cbet_opp, 1, 0])
Use these columns to build your statistic - you want to put the former over the later and multiply by 100 to get your stat (many stats are built with this kind of construction - you should be able to figure it out if you look at a couple).
For Fold to Flop CBet in 4Bet+ Pot use these columns:
cnt_f_cbet_def_action_fold_4b_pot: sum(if[ char_length(cash_hand_summary.str_aggressors_p) >= 4 and cash_hand_player_statistics.enum_f_cbet_action = 'F', 1, 0])
and
cnt_f_cbet_def_opp_4b_pot: sum(if[ char_length(cash_hand_summary.str_aggressors_p) >= 4 and cash_hand_player_statistics.flg_f_cbet_def_opp, 1, 0])
Again, put the former over the latter and multiply by 100.
Also, expect the sample sizes in these stats to be very small. These things feel like they come up a lot but when you look at the numbers it's always less than it feels like it should be.