by kraada » Thu Dec 15, 2011 10:30 am
Well for the first case (you raise he calls) the stat you want is built in and called Probe Turn. A bet is a probe bet if it's a bet out of position into a player who could have cbet the prior street but didn't. You raised preflop he called, you could have cbet the flop but didn't, so his turn bet is a probe.
For the latter you would need to build the stat as a custom stat. You can do that using these columns:
cnt_t_bet_after_x_3bp: sum(if[holdem_hand_player_statistics.flg_steal_def_opp and holdem_hand_player_statistics.flg_p_3bet and lookup_actions_f.action ='X' and holdem_hand_player_statistics.flg_t_bet, 1, 0])
cnt_t_open_opp_after_x_3bp: sum(if[holdem_hand_player_statistics.flg_steal_def_opp and holdem_hand_player_statistics.flg_p_3bet and lookup_actions_f.action ='X' and holdem_hand_player_detail.flg_t_open_opp, 1, 0])
Put the former over the latter and multiply by 100 to get your stat.