Page 1 of 1

Limp First In without Posters

PostPosted: Thu Aug 07, 2014 8:07 pm
by whiskyjohn
Hello again,

A few weeks back, I asked a question about raise first in and posting behind:
https://www.pokertracker.com/forums/vie ... 18#p271018

I now have a similar question. How can I filter out hands where a player Limps First In on
hands where player(s) have posted additional blinds?

PokerTracker has no Percentage of Pot on a Limp or Call filter, so I can't see a way to do this.

Again, the simple solution for all these problems would be to create a Hand Details Filter:

Number of Players Posting Blinds / Antes [ Exactly 2 ]

There are a number of these LFI/RFI cases I want to consider, and I want to get rid of all the
cases where someone has posted ahead or behind this action.

John

Re: Limp First In without Posters

PostPosted: Fri Aug 08, 2014 10:16 am
by kraada
There isn't a filter for that and the number of people who posted isn't stored in one location in the database so it wouldn't be easy to add, but I will pass this request on to the development team at the appropriate time so that they keep it in mind for the future.

Re: Limp First In without Posters

PostPosted: Sun Jul 08, 2018 6:38 pm
by Jackntigger
Hi, Is there still no way to filter out situations where a player has posted an additional blind? I would specifically like a situation where no one has entered the pot and no one has posted an additional blind and I'm first to limp on the sb. So only me and the BB have money in the pot.

Re: Limp First In without Posters

PostPosted: Mon Jul 09, 2018 9:44 am
by Flag_Hippo
There isn't a simple filter for that but you can exclude hands where any player has posted a dead big blind with the following expression filter in a custom report:

Code: Select all
cash_hand_player_statistics.id_hand not in (select chps.id_hand from cash_hand_player_statistics chps where chps.flg_blind_db)

Re: Limp First In without Posters

PostPosted: Thu Jul 12, 2018 8:30 pm
by Jackntigger
Hey Mr. Hippo, this is pure genius. It works well. Thank you.