Page 1 of 1

defense BB against raise

PostPosted: Thu Sep 01, 2016 12:26 pm
by Polo2B01
Hi,

I don't find in HUD stats for "defense BB by vilain agains a open raise (any position)".

thanks in advance.

Re: defense BB against raise

PostPosted: Thu Sep 01, 2016 12:52 pm
by kraada
Use the "Call PF 2Bet" stat and you can set the position to big blind in the Item Properties area and that should get you what you want.

Re: defense BB against raise

PostPosted: Thu Sep 01, 2016 1:22 pm
by Polo2B01
Thanks :)

Re: defense BB against raise

PostPosted: Thu Aug 19, 2021 11:27 am
by PtUser1
Hello
I would need a custom stat for "fold BB against the 1st open raise (any position)" like in this topic but excluding cold calls.
Just like "fold to steal" but for all positions :)
Using "Call/Fold PF 2Bet" stat includes cold calls :(
Thank u

Re: defense BB against raise

PostPosted: Thu Aug 19, 2021 1:58 pm
by Flag_Hippo
If there were no other callers then there is no squeeze opportunity and you can add this information to the relevant columns to create a new custom statistic:

Code: Select all
AND NOT cash_hand_player_statistics.flg_p_squeeze_opp

See this guide for the basics on custom statistics creation and this post shows how to create a custom statistic by adding new information. The example is for adding stack size information but the principle is the same.

Re: defense BB against raise

PostPosted: Fri Aug 20, 2021 11:51 am
by PtUser1
Here is my custom stat:
Name:
Fold BB to PF 2b
Description:
Percentage of the time that a player folded when in big blind and facing the 1st open raise without any other players being involved.
Value expression:
(cnt_p_2bet_def_action_fold / cnt_p_2bet_def_opp) * 100

That excludes limpers before, but not cold calls after the open raise
I would need to exclude cold calls. only the raiser and the big blind

Re: defense BB against raise

PostPosted: Fri Aug 20, 2021 12:48 pm
by Flag_Hippo
Those are just the names of default columns so you haven't created anything new as far as I can see. You need new column names and you have to edit the column expressions so they count what you want them to otherwise the new columns will just count the same thing as the original columns. Please refer to this guide for the basics on custom statistics creation and this guide for a deeper walkthrough. The latter was written for PokerTracker 3 but the techniques all apply to PokerTracker 4, the interface is just slightly different.

highfalutin