Page 1 of 1

how to exclude other players' cold call 3Bet preflop?

PostPosted: Thu Jul 18, 2024 7:16 am
by PokerFedor82
hi,
I tried searching the forum but I couldn't find anything about exclude other players' cold call 3Bet preflop.
Is this stats possible in PT4 ?

Thank you !

Re: how to exclude other players' cold call 3Bet preflop?

PostPosted: Thu Jul 18, 2024 12:38 pm
by Flag_Hippo
Yes that's possible. You can test for there not being a squeeze, squeeze opportunity and/or squeeze defend opportunity since if there was no squeeze there were no cold calls but what you would need to use depends on the specific statistic(s) you are creating. The relevant database fields are:

Code: Select all
NOT cash_hand_player_statistics.flg_p_squeeze

Code: Select all
NOT cash_hand_player_statistics.flg_p_squeeze_opp

Code: Select all
NOT cash_hand_player_statistics.flg_p_squeeze_def_opp

Re: how to exclude other players' cold call 3Bet preflop?

PostPosted: Fri Jul 19, 2024 12:21 am
by PokerFedor82
Let me throw in an example
EX: utg raise mp 3B Co calls Btn calls preflop
I want to build a stats for "raise and fold to 3B without villian cold call 3B preflop"

Re: how to exclude other players' cold call 3Bet preflop?

PostPosted: Fri Jul 19, 2024 6:37 am
by Flag_Hippo
OK thanks for clarifying. In hands where there is no cold caller and the villain is folding the actors string will be 2 characters long (the 2Bet and the 3Bet):

Code: Select all
char_length(cash_hand_summary.str_actors_p) = 2

In hands where villain calls/4bets without any cold calls inbetween then you can test that the 3rd character of the actors string matches the 2nd character of the aggressor string like this:

Code: Select all
char_length(cash_hand_summary.str_aggressors_p) >= 3 AND char_length(cash_hand_summary.str_actors_p) >= 3 AND substring(cash_hand_summary.str_actors_p from 3 for 1) = substring(cash_hand_summary.str_aggressors_p from 2 for 1)

This post has information on how the actors and aggressors strings work while this thread and this thread discuss how you can compare/test the strings.

Re: how to exclude other players' cold call 3Bet preflop?

PostPosted: Sat Jul 20, 2024 5:37 am
by PokerFedor82
Thanks a lot :)

highfalutin