OK iv'e been reading and messing with it for few hours and I think I understand the basics now. I have few question and example I want you to check:
1. I can see that the VPIP and PFR stat's has changed. From seeing how the new VPIP/PFR is calculate, it is surely more accurate. But, does that mean that every range I perceive based on VPIP/PFR number is now different? What I think of when I see 20 VPIP, is not 20 VPIP any more?
2. What does 2bet means? For example, what is the different between "3bet vs BTN open" and "3bet vs BTN 2bet"? Doesn't both mean blinds 3bet vs BTN ATS?
3. What is the different between "open opportunity" and "limp opportunity"? - does "limp opportunity" includes all "open opportunity"'s and opportunities to limp after limper(s) as well?
4. Does update cache being done automatically in PT4? I can see it, so I guess it is...
The example stat i'm giving here is "Limp first in(excluding SB position), Call preflop, call flop cbet and then fold to turn cbet". Fancy name for limp/call and then folding to double barrel(with some exceptions):
-I created two new columns:
cnt_p_limp_first_exSB_call_t_face_cbet:
sum( if[(cash_hand_player_detail.flg_p_open_opp AND cash_hand_player_statistics.flg_p_limp AND NOT cash_hand_player_statistics.position=9) AND lookup_actions_p.action='CC' AND cash_hand_player_statistics.flg_t_cbet_def_opp, 1, 0])
cnt_p_limp_first_exSB_call_t_face_cbet_def_action_fold:
sum( if[(cash_hand_player_detail.flg_p_open_opp AND cash_hand_player_statistics.flg_p_limp AND NOT cash_hand_player_statistics.position=9) AND lookup_actions_p.action='CC' AND cash_hand_player_statistics.flg_t_cbet_def_opp AND cash_hand_player_statistics.enum_t_cbet_action = 'F', 1, 0])
-and then created the stat:
LFI(exSB)/call & CvFCB & FvTCB:
(cnt_p_limp_first_exSB_call_t_face_cbet_def_action_fold / cnt_p_limp_first_exSB_call_t_face_cbet) * 100
Is that right?
Now, if I want to create the exact same stat but for SB limp ONLY, I create the same columns but only change the "AND NOT cash_hand_player_statistics.position=9" to "AND cash_hand_player_statistics.position=9". Right?