Page 1 of 1

BU vs BB spots

PostPosted: Wed Mar 19, 2025 3:51 am
by ridodirado
I would like to extract the BU vs BB spots with this action sequence: BC BC XX. How can I create the filter in the report?

Re: BU vs BB spots

PostPosted: Wed Mar 19, 2025 4:36 am
by Flag_Hippo
If you want all BU vs BB spots regardless of preflop actions you can enter this expression filter in a custom report:

Code: Select all
cash_hand_summary.str_actors_p LIKE '08%'

You can use this expression filter by clicking on the 'Filters' link and selecting 'Add New Expression Filters' (substitute 'cash' with 'tourney' if you are in a tournament report). This post has more information on how the actors and aggressors strings work if you want to filter for different situations.

You can filter for a players actions on each street via 'Hand Details -> Actions & Opportunities -> Street -> Street Action Sequence'. This is specific to each player so you need to do that from either the perspective of the BTN or BB. If you do that from the persepective of the BB betting out of position you will need to filter for them NOT taking a second action on each street.

Re: BU vs BB spots

PostPosted: Wed Mar 19, 2025 2:00 pm
by ridodirado
I'm confused. With this string
cash_hand_summary.str_aggressors_p LIKE '80' and cash_hand_summary.str_actors_p LIKE '08'
I extract all BU vs BB spots where hero is BU. Now I have two questions:
1) How can i extract the ones where hero is BB?
2) How can I proceed to extract those where on the flop BU checks BB and then on the turn BU checks BB checks?

Re: BU vs BB spots

PostPosted: Thu Mar 20, 2025 5:35 am
by Flag_Hippo
ridodirado wrote:1) How can i extract the ones where hero is BB?
2) How can I proceed to extract those where on the flop BU checks BB and then on the turn BU checks BB checks?

The expression filter on it's own isn't for any specific player but you can filter your own position using a regular filter.
ridodirado wrote:2) How can I proceed to extract those where on the flop BU checks BB and then on the turn BU checks BB checks?

I'm not sure what you are describing here since the BU would always act after the BB postflop but if you filter for being in the BB yourself then you can filter for your own actions on each street via 'Hand Details -> Actions & Opportunities -> Street -> Street Action Sequence'. If you want to specify that you only took one action on a street such as a single check then you will need to filter for checking as your first action and then NOT taking a second action.

Re: BU vs BB spots

PostPosted: Thu Mar 20, 2025 7:33 am
by ridodirado
Sorry for the mistake. The correct sequence is
PF: BU bet BB call
FLOP: BB X BU bet BB call
TURN: BB X BU X
RIVER....
If I use the filter by position it extracts all the spots where I am BB and I call even if OR is not the BU. Or not?
How can I specify that oppo must be BU only?

Re: BU vs BB spots

PostPosted: Thu Mar 20, 2025 2:20 pm
by Flag_Hippo
You can do that with built-in filters:

(Position of Active Player Position of Selected Exactly 8) AND (Position of First Raiser Position of Selected Exactly 0) AND (Called Steal) AND ((First Flop Action Check) AND (Second Flop Action Call)) AND (First Turn Action Check) AND (NOT (Second Turn Action Any Action))

ridodirado.zip
(1.33 KiB) Downloaded 172 times

Re: BU vs BB spots

PostPosted: Fri Mar 21, 2025 2:29 am
by ridodirado
Ty