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

Discuss how to create custom stats, reports and HUD profiles and share your creations.

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

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

Postby PokerFedor82 » Thu Jul 18, 2024 7:16 am

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 !
PokerFedor82
 
Posts: 25
Joined: Sun May 20, 2012 11:43 pm

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

Postby Flag_Hippo » Thu Jul 18, 2024 12:38 pm

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
Flag_Hippo
Moderator
 
Posts: 15169
Joined: Tue Jan 31, 2012 7:50 am

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

Postby PokerFedor82 » Fri Jul 19, 2024 12:21 am

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"
PokerFedor82
 
Posts: 25
Joined: Sun May 20, 2012 11:43 pm

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

Postby Flag_Hippo » Fri Jul 19, 2024 6:37 am

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.
Flag_Hippo
Moderator
 
Posts: 15169
Joined: Tue Jan 31, 2012 7:50 am

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

Postby PokerFedor82 » Sat Jul 20, 2024 5:37 am

Thanks a lot :)
PokerFedor82
 
Posts: 25
Joined: Sun May 20, 2012 11:43 pm


Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: Google [Bot] and 16 guests

cron