I tried hard for hours but I cannot resolve my problem. i really need your help now!
For building my own custom stats I want to have clear the situation which a player can face PF. As I see it thera are 4 this possibilitis
(1) No action before me - covered with the cnt_p_open_opp column
(2) One or more limpers before me - as far as I see no standard column which helps easily to cover this case
(3) Facing a raise. There is seemingly a standard column which covers this case, but I think, this case should be logically differentiated into the followin scenarios:
(3a) One raiser (and possibly callers) in front of me
(3b) One or more limpers and one raiser before me.
(3c) One or more limpers befor me - I limp also - and after I'm confronted wiht a player which raised behind me.
(3d) One or more limpers befor me - I raise - and after I'm confronted wiht a player which reraised behind me.
If I understand well, all this cases are covered by the column cnt_p_face_raise. And I suppose, that case 3c and d) logically also falls under point 2)
(4) Walk (no action, when i am in the BB, but I cannot open)
Now, in order to create my custom stats i would like to create first some well defined denominators
(1) No problem
(2) I would like to creat a denominator cnt_p_face_limp which covers the cases 2), 3c) and 3d) (this woul help me to make a stat for the case BB facing a limp for example)
(3) I woul like to have a denominator which only covers the Cases 3a) and 3b) (i.e. not cnt_p_face_raise?)
(4) I created this expression for the walk:
cnt_p_walk =
sum(if[tourney_holdem_hand_player_statistics.flg_blind_b = true AND tourney_holdem_hand_player_statistics.flg_vpip = false AND tourney_holdem_hand_player_statistics.flg_won_hand, 1 , 0 ] )
Could you give me some Idea how to create this denominators "cnt_p_face-limp" and "cnt_p_face_raise without previous action from my side"?
And ist does the expression (4) make sense?
Last question: Do the four in this way defined denominators
cnt_p_open_opp + cnt_p_face_limp + "cnt_p_face_raise without previous action from my side" + cnt_p_walk sum up to cnt_hands?
Thank you very much for your help!
