Flag_Hippo wrote:There isn't a built-in filter for the positions of limpers/callers however you can use the following filter expression in
'My Reports' which ensures a small blind limp:
- Code: Select all
cash_hand_summary.str_actors_p LIKE '9%' and cash_hand_summary.str_aggressors_p NOT LIKE '89%'
See
this post for more information on how the actors and aggressors strings work. You can use this expression filter by clicking on the 'Filters' link and selecting 'Add New Expression Filters'. For a tournament report just substitute all instances of 'cash' with 'tourney'.
Thank you for your help.
So if I am reading this correctly, this filter expression picks out times that (a) the SB is the only player to VPIP, and (b) the SB did not raise. Have I got that right?
Because if I do, that only covers situations where the action is folded to the SB, they complete, and the BB checks behind. Or does the aggressor string for the BB stay the same if there are raises and reraises?
I want to be sure I am including situations where the SB completes and the BB raises. In particular, I want to be sure that I am including situations where the SB completes, the BB raises, and the SB three-bets.
I really appreciate the assistance; this is my first foray into PostgreSQL query construction.