Is there a way that I can filter all of the hands where I face a 4-bet preflop and have AQs? And if so, how would I go about this?
If it can't be done with Hold'em Manager 3, can it be done with PT4?
Thank You
Is there a way that I can filter all of the hands where I face a 4-bet preflop and have AQs? And if so, how would I go about this?
If it can't be done with Hold'em Manager 3, can it be done with PT4?
Thank You
2023-12-20_08h51_05.pngPocket169Cards = 'AQs' and FacingPreflopFourBet=true
2023-12-20_08h51_18.png
Works great. Thanks again.
Great.
Just so you know, I used the Filter Editor for the Hole Cards portion of that filter, but I used the 'Autocomplete Filter Bar' to find the other half of the filter above. The auto-complete is often the fastest way to build more complex filters and it contains many filters that can't be found in the Filter Editor. We have a lot of info and videos about how to better use our filters on our FAQs here - https://kb.holdemmanager.com/knowled...report-filters
Last edited by fozzy71; 12-20-2023 at 03:39 PM.
I will check them out. Thanks for the extra insight.
I've watched the video #5 on Board Texture, but it does not explain a question I have.
Let's take a simple example: Applying a filter for when I have KK and there is an Ace on the flop.
I can see how to do this specifically. But, let's say I want to filter for how often there is an ace on the flop when I have KK.
In order to do that, I'd need to know how to filter for all of the times I've had KK, all of the times there was never any flop seen, and all of the times there was a flop that contained at least one ace. As I said, I can see how to do the last part. But how about filtering to see how many times I've had KK overall, and how many times I've had KK but never made it to the flop (either b/c my opponents folded, or b/c I did)?
You have to add a filter for 'saw flop is true' or 'saw flop is false' to the 'KK w/ A Hi Flop' filter. That being said, how often do you not see a flop w/ KK? I am 100% VPIP w/ KK over my last 21k hands. :P
Here is how you would do it in 2 separate filters:
2023-12-23_06h30_33.pngIsOmaha = false and Pocket169Cards = 'KK' and Flop3SortedHoleCard >=12 and SawFlop=true
2023-12-23_06h29_21.pngIsOmaha = false and Pocket169Cards = 'KK' and Flop3SortedHoleCard >=12 and SawFlop=false
And here is how you do it by manually combining the 'saw flop is true' or 'saw flop is false' with parentheses '()' in the filter expression.
2023-12-23_06h40_52.pngIsOmaha = false and Pocket169Cards = 'KK' and Flop3SortedHoleCard >=12 and (SawFlop=true or SawFlop=false)
You can edit any filter expressions manually using basic Algebra symbols/characters (And/Or, Parentheses, etc) to make them more complex and/or more inclusive as below to see data from multiple filters in a single report.