Discuss how to create custom stats, reports and HUD profiles and share your creations.
Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
by ugthemc » Mon Sep 22, 2025 9:11 am
I'm trying to run a Hand report on how I've been playing AAxx hands( in Omaha) by position.
I wanted to look at:
BB ( hero) vs MP RFI
And one squeeze spot:
BB(hero) vs MP RFI and BTN( cold call)
I tried adding the following expression for BB ( hero) vs MP RFI :
cash_hand_player_statistics.position = 8 and cash_hand_summary.str_aggressors_p LIKE '82' and cash_hand_summary.str_actors_p LIKE '28'
However, only 9 hands were displayed after I saved it, even though I have around 40 thousand hands played in my database.
Not sure where I went wrong, thanks
-
ugthemc
-
- Posts: 6
- Joined: Thu Jul 22, 2010 6:29 am
by ugthemc » Mon Sep 22, 2025 10:14 am
Also,
I tried editing the report filter where BB ( hero) 3bs vs MP RFI( who calls 3b) by adding the expression
cash_hand_player_statistics.position = 8 and cash_hand_summary.str_aggressors_p LIKE '828' and cash_hand_summary.str_actors_p LIKE '282'
I got a total of 5 hands!!
-
ugthemc
-
- Posts: 6
- Joined: Thu Jul 22, 2010 6:29 am
by Flag_Hippo » Tue Sep 23, 2025 11:57 am
ugthemc wrote:I tried adding the following expression for BB ( hero) vs MP RFI :
cash_hand_player_statistics.position = 8 and cash_hand_summary.str_aggressors_p LIKE '82' and cash_hand_summary.str_actors_p LIKE '28'
However, only 9 hands were displayed after I saved it, even though I have around 40 thousand hands played in my database.
Not sure where I went wrong, thanks
This will only show you hands where you were the last to VPIP preflop e.g by calling and closing the action. This filter will not include hands where you 3bet+. To include hands with any combo of BB/MP subsequent actions you should instead use:
- Code: Select all
cash_hand_player_statistics.position = 8 and cash_hand_summary.str_aggressors_p LIKE '82%' and cash_hand_summary.str_actors_p LIKE '28%'
For more information on pattern matching in PostgreSQL see
this guide.
-
Flag_Hippo
- Moderator
-
- Posts: 17044
- Joined: Tue Jan 31, 2012 7:50 am
by ugthemc » Wed Sep 24, 2025 9:02 am
Thanks, I still only got 14 hands, but I think that may have more to do with the stakes I play at(a lot of limping and multi-way pots)
I have a follow-up question.
How would I add a position to make this spot a squeeze, such as:
BB(hero) vs MP RFI and BTN( cold call)
I tried adding the BTN position, like so:
cash_hand_player_statistics.position = 8 and cash_hand_summary.str_aggressors_p LIKE '820%' and cash_hand_summary.str_actors_p LIKE '208%'
I only got one hand, so that doesn't seem right
-
ugthemc
-
- Posts: 6
- Joined: Thu Jul 22, 2010 6:29 am
by Flag_Hippo » Wed Sep 24, 2025 10:52 am
ugthemc wrote:BB(hero) vs MP RFI and BTN( cold call)
I tried adding the BTN position, like so:
cash_hand_player_statistics.position = 8 and cash_hand_summary.str_aggressors_p LIKE '820%' and cash_hand_summary.str_actors_p LIKE '208%'
I only got one hand, so that doesn't seem right
If you are not seeing the number of hands you expect then replay a hand and see if the hand actions match with what you were trying to achieve. With this you are testing for the BTN 3betting (the third number in the aggressors string). What you need is this which tests for the BTN being the second player to VPIP but not by 3betting:
- Code: Select all
cash_hand_player_statistics.position = 8 and cash_hand_summary.str_aggressors_p LIKE '82%' and cash_hand_summary.str_aggressors_p NOT LIKE '820%' and cash_hand_summary.str_actors_p LIKE '208%'
-
Flag_Hippo
- Moderator
-
- Posts: 17044
- Joined: Tue Jan 31, 2012 7:50 am
by ugthemc » Sat Sep 27, 2025 1:58 pm
Thanks!
-
ugthemc
-
- Posts: 6
- Joined: Thu Jul 22, 2010 6:29 am
Return to Custom Stats, Reports and HUD Profiles
Users browsing this forum: No registered users and 12 guests