Page 1 of 1

Filtering for flips

PostPosted: Wed Jan 15, 2020 2:06 am
by xKINGSFULLx
I want to know how to filter my tournament hands for times I got it in preflop in a flip situation. I feel like I've been running terrible in flips lately and I need to know if I actually am, or it's all in my head.

Re: Filtering for flips

PostPosted: Wed Jan 15, 2020 10:28 am
by Flag_Hippo
You can do that in a custom report with the following expression filter:

Code: Select all
tourney_hand_player_statistics.val_equity between .45 and .55 and (tourney_hand_player_statistics.enum_allin SIMILAR TO '(P|p)' OR tourney_hand_player_statistics.enum_face_allin SIMILAR TO '(P|p)')

You can change the equity values/street in this filter as required.

Re: Filtering for flips

PostPosted: Wed Jan 15, 2020 6:34 pm
by xKINGSFULLx
Thank you that did work for me.

I had to filter for hands I either went all in pre or called allin pre. I had to do this because it considered it a a hand a flip no matter what street you get it in on if the equities fall within the parameters. I did this by:


Actions and Opportunities > Actions and Opportunities - Preflop > Preflop Raises > Raised All-In Preflop

And

Actions and Opportunities > Actions and Opportunities - Preflop > Preflop Calls > Went All-In (on)

So I assuming I did that correctly I have one more question.

It also considers it a flip when you get it in vs the same hand, like AA vs AA. Is there a way I can filter OUT those hands? I believe I'll have to change the custom filter expression somehow?

Thanks.

Re: Filtering for flips

PostPosted: Thu Jan 16, 2020 7:46 am
by Flag_Hippo
xKINGSFULLx wrote:I had to filter for hands I either went all in pre or called allin pre. I had to do this because it considered it a a hand a flip no matter what street you get it in on if the equities fall within the parameters. I did this by:

Actions and Opportunities > Actions and Opportunities - Preflop > Preflop Raises > Raised All-In Preflop

And

Actions and Opportunities > Actions and Opportunities - Preflop > Preflop Calls > Went All-In (on)

The expression filter I gave does that already and when testing it I do not see any hands where the all-in was postflop. Can you please attach a screenshot showing the active expression filter with hands that are showing incorrectly either here or in a Support Ticket.

xKINGSFULLx wrote:It also considers it a flip when you get it in vs the same hand, like AA vs AA. Is there a way I can filter OUT those hands? I believe I'll have to change the custom filter expression somehow?

Code: Select all
tourney_hand_player_statistics.val_equity between .45 and .49 and tourney_hand_player_statistics.val_equity between .51 and .55 and (tourney_hand_player_statistics.enum_allin SIMILAR TO '(P|p)' OR tourney_hand_player_statistics.enum_face_allin SIMILAR TO '(P|p)')