I try to build a stat, which tells me, how any player reacts to a simple raise Pf when it is his first time to act.
I cannot use the lookup_action_street field (which would be the easiest way) because it seems not to work properly for tourney statistics.
Now I have some questions:
1a) The first thing that I want to do is to seaparate the actions when player is facing a simple raise in position (not in the blinds).
First i take the denominator
cnt_p_ccall_opp
Then i crate nominators for
- immediate folds (not folding later in the hand)
cnt_p_fold_face_raise_atfirstaction_not_blinds =
sum( if[tourney_holdem_hand_player_statistics.flg_p_fold AND
tourney_holdem_hand_player_statistics.flg_p_ccall = false AND
tourney_holdem_hand_player_statistics.flg_p_3bet = false AND
tourney_holdem_hand_player_statistics.flg_p_4bet = false AND
tourney_holdem_hand_player_detail.amt_blind = 0 AND
(tourney_holdem_hand_player_statistics.flg_p_face_raise = true AND NOT (tourney_holdem_hand_player_statistics.flg_p_face_raise = false OR tourney_holdem_hand_player_statistics.flg_p_limp = true OR tourney_holdem_hand_player_statistics.flg_p_first_raise = true) AND
tourney_holdem_hand_player_statistics.flg_p_open_opp = false), 1 , 0 ] )
- cold calls
cnt_p_ccall
- 3 bets (regardless if player later folds or calls)
cnt_p_3bet_face_raise_atfirstaction_not_blinds
sum( if[tourney_holdem_hand_player_statistics.flg_p_3bet AND
tourney_holdem_hand_player_detail.amt_blind = 0 AND
(tourney_holdem_hand_player_statistics.flg_p_face_raise = true AND NOT
(tourney_holdem_hand_player_statistics.flg_p_face_raise = false OR tourney_holdem_hand_player_statistics.flg_p_limp = true OR tourney_holdem_hand_player_statistics.flg_p_first_raise = true) AND
tourney_holdem_hand_player_statistics.flg_p_open_opp = false), 1 , 0 ] )
This 3 nominators together shoud give me 100% .. but when I check them in a report, I only get 99,9% ... for most players I get correct results, but for a few players I seem to exclude some hands. You see which ones?
Where i make a mistake in my thinking process??
2) How do i do the same for calls (to a raise) in the blinds? Can I use cnt_p_call > 0 instead of flg_p_ccall?
Thanx for your advice.
