I want to make a stat that tells me the % of times the player raises preflop (open-raise or raises after limpers) and doesn't 3bet/4bet and folds either to a preflop 3bet or flop bet or raise. The idea being that I want to know if I have a big probability of pushing a player off the pot when he raises in (e.g.) MP and I 3bet from the button and then bet at the flop when he checks or raise his bet or if a player folds easily when he tries to steal my BB from button and I 3bet and then donk-bet the flop or check-raise him. So in general the state should tell me, what are my chances of stealing the pot from the initial preflop agressor by getting more agressive on him preflop and on the flop.
These are the conditions that I came up with:
cnt_p_raise>0 AND NOT flg_p_3bet AND NOT flg_p_4bet AND (flg_p_fold OR flg_f_fold)
divided by the sum of
cnt_p_raise>0 AND NOT flg_p_3bet AND NOT flg_p_4bet AND (flg_p_face_raise OR flg_f_face_raise OR amt_f_bet_facing>0)
Would those be the proper conditions?
