Page 1 of 1

fold vs river donk btn vs bb

PostPosted: Sat Oct 25, 2025 9:42 am
by Tinman9956
I suck at stats. What I'm looking for is somebody to help me with the stats BTN fold vs BB river donk, BTN call vs BB river donk, and BTN raise vs BB river donk for cash games to add to a pop up. I found the PT4 stats, but would like some direction on how I could go about doing this, if it's not to complicated. Thank You.
PT4-Fold vs river donk.png
(207.55 KiB) Downloaded 880 times

Re: fold vs river donk btn vs bb

PostPosted: Tue Oct 28, 2025 6:55 am
by Flag_Hippo
For that you will need to duplicate the columns used in those statistics and add this to the column expressions before creating the new stats:

Code: Select all
and cash_hand_player_statistics.position = 0 and cash_hand_summary.str_aggressors_r LIKE '8%'

See this guide for the basics on custom statistics creation and this guide on how to create a new version of a stat. While the latter was written for PokerTracker 3 and the user interface is different the techniques still apply to PokerTracker 4.

Re: fold vs river donk btn vs bb

PostPosted: Tue Oct 28, 2025 9:47 am
by Tinman9956
pt4-no valid SQL.png
(275.45 KiB) Downloaded 791 times
Thanks for the code. I added the code but I ger this error, what am I doing wrong. Thanks

Re: fold vs river donk btn vs bb

PostPosted: Tue Oct 28, 2025 1:14 pm
by Flag_Hippo
The column needs to be in this format:

Code: Select all
sum(if[expression, then, else])

For example:

Code: Select all
sum(if[cash_hand_player_statistics.enum_r_donk_action='F' and cash_hand_player_statistics.position = 0 and cash_hand_summary.str_aggressors_r LIKE '8%', 1, 0])

Re: fold vs river donk btn vs bb

PostPosted: Tue Oct 28, 2025 3:43 pm
by Tinman9956
Thanks for all your help. I made the columns, but am having an issue with the stat, I looked at the guides, but can't figure out how to get the positions set. Here is a screenshot of what I have. Again thanks for all your help, I just don't get this stuff.


PT4-Donk stat error.png
(338.09 KiB) Downloaded 810 times

Re: fold vs river donk btn vs bb

PostPosted: Wed Oct 29, 2025 5:58 am
by Flag_Hippo
The positions are already set in the custom column expressions. You just need to use your custom column names to create the stats 'Value Expression'.

Re: fold vs river donk btn vs bb

PostPosted: Wed Oct 29, 2025 10:15 am
by Tinman9956
Got it working, again, thanks for all your help.