griffith_white wrote:Or maybe something similar exist so you can instruct me how to duplicate and change the stat to get this one ?
Start with the columns from the '3Bet Preflop' statistic and add the information needed (there were one or more limpers, the player did not limp-3bet themselves and it wasn't a squeeze opportunity). For example:
cnt_p_3bet_iso- Code: Select all
sum(if[cash_hand_player_statistics.flg_p_3bet AND NOT cash_hand_player_statistics.flg_p_limp AND NOT cash_hand_player_statistics.flg_p_squeeze_opp AND char_length(cash_hand_summary.str_aggressors_p) >= 2 AND substring(cash_hand_summary.str_aggressors_p from 2 for 1)::int != substring(cash_hand_summary.str_actors_p from 1 for 1)::int, 1, 0])
See
this guide for the basics on custom statistics creation and
this guide for a deeper walkthrough. While the latter was written for PokerTracker 3 and the user interface is different the techniques still apply to PokerTracker 4. While we have not
published the schema like we did for PokerTracker 3 the meaning of database fields haven't changed in any significant way. Also forum member 'Bininu' made their own schema document for PokerTracker 4 available in
this thread.
This post has information on how the actors and aggressors strings work while
this thread and
this thread discuss how the strings can be compared/tested.