by kraada » Thu Jan 08, 2009 2:58 pm
You cannot pick out who exactly is the initial stealer when you 4bet, so there's no way right now to distinguish between these two spots:
Button raises, you're in the SB, you 3bet, the BB pushes all in, and the button folds
and
The button raises, you're in the SB, you 3bet, the BB folds and the button pushes all in.
You can't distinguish those two spots with the custom stat system the way it is set up currently.
That said, if you want to pick out times you're facing a 4bet preflop after you've 3bet vs some steal attempt:
cnt_p_face_4bet_when_3b_steal:
sum(if[holdem_hand_player_statistics.flg_blind_def_opp and holdem_hand_player_statistics.flg_p_3bet and holdem_hand_player_statistics.flg_p_4bet_def_opp, 1, 0])
flg_blind_def_opp means you had a chance to defend the blinds
flg_p_3bet means you made a 3bet
flg_p_4bet_def_opp means you had a chance to defend against a 4bet.
and
cnt_p_fold_4bet_when_3b_steal:
sum(if[holdem_hand_player_statistics.flg_blind_def_opp and holdem_hand_player_statistics.flg_p_3bet and holdem_hand_player_statistics.enum_p_4bet_action = 'F', 1, 0])
Then create the stat using those two columns, since the first counts up the times the person faced the 4bet, and the second is the times they folded, put the latter over the former, multiply by 100, and make sure to fill in the format tab and everything should work.
Since I've shown you how to build this one, you should be able to build 4bet after stealing yourself. It's the same principle, you just use flg_steal_att for steal attempt and change 3bets and 4bets when necessary.
Good luck.