Page 1 of 1

How I can insert filter in my statistic?

PostPosted: Thu Nov 09, 2023 7:55 am
by Feder96
Good morning,
I need to create new statistics, like "cbet flop when there is one A on the flop". How I can tell to PT4 that the cbet is refered only situation with A on flop?

The screenshot shows the normal statistic. What have I add?

Thank you!

Re: How I can insert filter in my statistic?

PostPosted: Tue Nov 14, 2023 7:42 am
by Flag_Hippo
If there is one ace on the flop the following is true:

Code: Select all
tourney_hand_summary.card_1 > 0 AND ((tourney_hand_summary.card_1 % 13) = 0 AND (tourney_hand_summary.card_2 % 13) !=0 AND (tourney_hand_summary.card_3 % 13) !=0) OR ((tourney_hand_summary.card_2 % 13) = 0 AND (tourney_hand_summary.card_1 % 13) !=0 AND (tourney_hand_summary.card_3 % 13) !=0) OR ((tourney_hand_summary.card_3 % 13) = 0 AND (tourney_hand_summary.card_1 % 13) !=0 AND (tourney_hand_summary.card_2 % 13) !=0)

but before you can create this statistic you can need to create the custom columns for it with the correct expression in the 'Columns' section - 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.