I am evaluating PT3 and it won't allow me to access the Configure Stats section in the trial version. I would like to know how doable a report I will need is. I started with the assumption I would need to build my own table(s) to pre-process some data before building the report. It appears I might be able to use the custom stats and the built-in reporting hence my question.
The report: For each position, I want to compare my hole cards to a group (different for each position) and show some of the stats (VP$IP, PFR etc) when I played cards in the group and when played cards not in the group. I also want to be able to see individual hands and be able to replay them like shown in the POSITIONS TAB (stats by position, hands grouped by hole cards and individual hand detail). I cannot use the built-in definitions of EP, MP as these don't isolate the UTG and I am evaluating each individual position opposite the PT3 way (UTG, UTG + 1, etc).
I did a SQL query to select hands with more than 5 players in the hand, UTG and some pre-defined hole cards. My first question is can I use a custom stat to, for example, set a bool at the player hand level if the following condition is true or set a stat identifying this player hand as a UTG? Many thanks in advance.
Da Old Goat
SELECT holdem_hand_summary.id_hand,holdem_hand_player_statistics.id_hand,holdem_hand_summary.cnt_players,
holdem_hand_player_statistics.id_holecard,
holdem_hand_player_statistics.position
FROM holdem_hand_summary,holdem_hand_player_statistics
WHERE holdem_hand_summary.id_hand = holdem_hand_player_statistics.id_hand AND
holdem_hand_summary.cnt_players > 5 AND
holdem_hand_player_statistics.position = (holdem_hand_summary.cnt_players - 3) AND
(holdem_hand_player_statistics.id_holecard = 1 OR
holdem_hand_player_statistics.id_holecard = 2 OR
holdem_hand_player_statistics.id_holecard = 3 OR
holdem_hand_player_statistics.id_holecard = 4 OR
holdem_hand_player_statistics.id_holecard = 26 OR
holdem_hand_player_statistics.id_holecard = 27 OR
holdem_hand_player_statistics.id_holecard = 49)