Page 1 of 1

3bet vs isolation stat

PostPosted: Thu Apr 06, 2023 8:45 am
by griffith_white
I need stat so when villain make isolation (raise vs limper) how much is player 3beting in this situation and also same stat with fold to 4bet. I tried to search forum and custom stats but did not find relevant stat

Re: 3bet vs isolation stat

PostPosted: Fri Apr 07, 2023 5:05 am
by Flag_Hippo
There is a 'Fold to PF 3Bet After Raise With Previous Limpers' custom statistic in the Download Warehouse.

Re: 3bet vs isolation stat

PostPosted: Fri Apr 07, 2023 10:21 am
by griffith_white
But that is not the stat I need. I need it from other side so how much player did 3b against raise with previous limpers not how much did raiser with previous limper fold to 3b. Does this stat exist ? Or maybe something similar exist so you can instruct me how to duplicate and change the stat to get this one ?

Re: 3bet vs isolation stat

PostPosted: Sat Apr 08, 2023 3:58 am
by Flag_Hippo
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.

Re: 3bet vs isolation stat

PostPosted: Wed Nov 27, 2024 3:02 pm
by BPD1997
Griffith did you even manage to make this?

highfalutin