Page 1 of 4

Open-limp SB stat

PostPosted: Fri Dec 20, 2013 12:13 am
by setherson2
Seems like a simple enough stat that should exist but i can't find it.

% of time SB limps preflop given everyone has folded to him

Re: Open-limp SB stat

PostPosted: Fri Dec 20, 2013 4:26 am
by WhiteRider
"Preflop Open Limp (Limp First In)" is available in the Download Warehouse for free download. Use this stat and set the Position property in the Hud editor to "SB".

Re: Open-limp SB stat

PostPosted: Fri Dec 20, 2013 4:46 pm
by setherson2
Perfect, thx

Re: Open-limp SB stat

PostPosted: Fri Dec 20, 2013 11:09 pm
by setherson2
I got the stat import done and everything. I'm custom building my hud now and I don't know why but whenever I try to make a new text-box have a silver background color it always just stays black. I'm trying to alternate the black/grey like the default as well as have the light grey background for the separator lines of text. But every time I change it by hand it's still just a black background.

Re: Open-limp SB stat

PostPosted: Sat Dec 21, 2013 9:22 am
by kraada
If you want to set the background color per stat you need to turn the Transparent Background property to Off. If you want to set the entire group's background color you do that via the Background Color box that's in the Group Properties area in the top center, not on the individual stats.

Re: Open-limp SB stat

PostPosted: Sat Dec 21, 2013 6:41 pm
by setherson2
Great, thanks. Working now. Need a new stat(s), though. I'm looking for '3bet all-in' and hopefully '4bet all-in' and '5bet all-in' as well.

Re: Open-limp SB stat

PostPosted: Sat Dec 21, 2013 7:44 pm
by setherson2
Another thing...I just downloaded these 3 stats: call vs open, call vs EP open, call vs MP open. I converted them from $ to T and put them in my hud but they are just showing dashes in the popup. And it's def not just no info from small samples on players.

Re: Open-limp SB stat

PostPosted: Sun Dec 22, 2013 9:31 am
by kraada
Those should work when converted that way. Please restart PT4 using the logging enabled link on your Start Menu, reproduce this problem and then report it via our support system with the log file - that will help us figure out what is going on here and get it fixed for you. You can find that file by clicking File --> Show User Data Folder in the main PT4 window - the file we need is the text file called PokerTracker4 that is in that folder.

If you're looking at tournaments honestly the difference between "4bet" and "4bet all-in" is going to be minimal -- and for 5bet nonexistant. For 3bet you'd need to decide what percentage of the effective stack you'd want to count as all in. For example, if someone had a stack of 1000 and 3bet to 999 clearly you'd want that to count. So you need to pick at what point you would want the cutoff.

Re: Open-limp SB stat

PostPosted: Sun Dec 22, 2013 12:16 pm
by setherson2
Yeah good call. How do I filter the 3bet to be more that x% of effective stack?

Re: Open-limp SB stat

PostPosted: Sun Dec 22, 2013 12:33 pm
by kraada
You have to do it with a custom stat either way, but the value you care about is:

tourney_hand_player_statistics.amt_p_raise_made / tourney_hand_player_statistics.amt_p_effective_stack

That's the size of the player's first raise in terms of his effective stack.

So:

tourney_hand_player_statistics.amt_p_raise_made / tourney_hand_player_statistics.amt_p_effective_stack > .6 would be true when he raised to more than 60% of his effective stack.

So a 3bet more than 60% of effective stack column would look like:

sum(if[tourney_hand_player_statistics.flg_p_3bet and tourney_hand_player_statistics.amt_p_raise_made / tourney_hand_player_statistics.amt_p_effective_stack > .6, 1, 0])

See this guide for the basics on custom statistics creation and this guide for a deeper walkthrough. The latter was written for PT4 but the techniques all apply to PT3, the interface is just slightly different.

highfalutin