Page 1 of 1

Raise BB behind SB open-limp

PostPosted: Wed Jul 13, 2011 12:32 pm
by MachtiSonni
Hey there,

I'd like to make a stat to see how often BB raises when the action is folded to the SB and the SB decides to open-limp. I checked out the database-schema but didn't come up with good spots where to start. Any help would be appreciated!

Thanks!

-MachtiSonni

Re: Raise BB behind SB open-limp

PostPosted: Wed Jul 13, 2011 12:57 pm
by kraada
As it turns out, due to the way the database is constructed this is a particularly tricky situation to define well.

We've fixed this particular deficiency for PT4 and this stat will be easy to build in PT4 though.

Re: Raise BB behind SB open-limp

PostPosted: Wed Jul 13, 2011 2:39 pm
by MachtiSonni
Yeah...

I shuffled through the database-schema and figured out the same thing. I'll wait for PT4, then :)

-MachtiSonni

Re: Raise BB behind SB open-limp

PostPosted: Wed Jul 13, 2011 2:45 pm
by kraada
You might be able to get reasonably close to accurate though by comparing val_p_raise_made_pct, amt_p_raise_made and the size of the big blind. If you're in the BB and the SB limps the pot is only 2BBs. The only other way that can happen is with a dead SB and a poster who checks - which seems fairly rare.

If you don't raise and instead check then you can check that you're only against the small blind by using flg_f_has_position.

Re: Raise BB behind SB open-limp

PostPosted: Sun Jun 22, 2014 12:35 pm
by js2002
Is there a stat already or a 2014 way to do it more easy?

Re: Raise BB behind SB open-limp

PostPosted: Sun Jun 22, 2014 2:58 pm
by WhiteRider
You can do this with the actors and aggressors strings in PT4.

If the SB is the first to enter the pot the actors string will start with '9'.
If the SB did not raise then the aggressors string will either be 1 char long (if the BB checked) or the 2nd char will not be '9' (it will be 8 if the BB 2Bet).

cash_hand_summary.str_aggressors_p
cash_hand_summary.str_actors_p

I'm sure you've used these strings before, but they are described here. Remember to test the lengths before you test specific characters.

Re: Raise BB behind SB open-limp

PostPosted: Sun Jun 22, 2014 5:09 pm
by js2002
found out, thx

highfalutin