Page 1 of 1

How to create a stat for OR (2bb,3bb,4bb.. OpenPush)

PostPosted: Mon Dec 03, 2012 8:05 pm
by Nidel
I want to create a stat for OpenRaise to 2bb, other for Or > 2bb and ohter for Open Push. Is that posible?

Im quite new using PT and i would like to learn more about customizing stats, is there any advanced manual for this?

Than you!! ;)

Re: How to create a stat for OR (2bb,3bb,4bb.. OpenPush)

PostPosted: Tue Dec 04, 2012 7:48 am
by Barlin63
Hi, I do not want to hijack this thread but maybe we can catch two birds with one stone. I am looking for something similar as a popup. See the example. I would to know what the VPIP|%/PFR% is based on stack size and position.

Image

Re: How to create a stat for OR (2bb,3bb,4bb.. OpenPush)

PostPosted: Tue Dec 04, 2012 8:10 am
by Nidel
I know how to do that :)

sb_filter_by_stack.PNG
sb_filter_by_stack
sb_filter_by_stack.PNG (3.63 KiB) Viewed 3572 times


I can explain you how to do it, just open a new thread and send me the kink ;)

...But i dont know how to create stats depending on the sizing :(

Re: How to create a stat for OR (2bb,3bb,4bb.. OpenPush)

PostPosted: Tue Dec 04, 2012 10:44 am
by kraada
The column you want to be looking at is tourney_hand_player_statistics.amt_p_raise_made - that is the amount (in chips) of the first raise that the player made.

So for example in your custom stat you might add:
and (tourney_hand_player_statistics.amt_p_raise_made / tourney_blinds.amt_bb) = 2

to specify a 2BB open raise from that player.

If you want to specify how often they faced a 2bet of the specific size you want tourney_hand_player_statistics.amt_p_2bet_facing instead of _raise_made.

Re: How to create a stat for OR (2bb,3bb,4bb.. OpenPush)

PostPosted: Tue Dec 04, 2012 12:16 pm
by Nidel
kraada wrote:and (tourney_hand_player_statistics.amt_p_raise_made / tourney_blinds.amt_bb) = 2

to specify a 2BB open raise from that player.

TY, so if i want to create a stat for Open Push, could be something like this?

and (tourney_hand_player_statistics.amt_p_raise_made >= (min(live_amt_stack,2*live_amt_avg_stack-live_amt_stack))

Re: How to create a stat for OR (2bb,3bb,4bb.. OpenPush)

PostPosted: Tue Dec 04, 2012 1:48 pm
by Nidel
I´ve created this 2 columns:

SB miniraise
sum(if[tourney_hand_player_statistics.cnt_p_raise > 0 AND NOT (tourney_hand_player_statistics.flg_p_limp) AND lookup_positions.flg_sb AND (tourney_hand_player_statistics.amt_p_raise_made / tourney_blinds.amt_bb) = 2, 1, 0])
SB push
sum(if[tourney_hand_player_statistics.cnt_p_raise > 0 AND NOT (tourney_hand_player_statistics.flg_p_limp) AND lookup_positions.flg_sb AND tourney_hand_player_statistics.amt_p_raise_made = tourney_hand_player_statistics.amt_p_effective_stack, 1, 0])

And Im using them for this 2 stats:

SB Mini Raise %
(cnt_pfr_SB_mini / cnt_hands_SB) * 100
SB Open Push %
(cnt_pfr_SB_push / cnt_hands_SB) * 100

Am i doing correctly?

Thnak you :)

Re: How to create a stat for OR (2bb,3bb,4bb.. OpenPush)

PostPosted: Tue Dec 04, 2012 3:29 pm
by kraada
The latter two look good. You can't use min() in column definitions though so that won't work.

Re: How to create a stat for OR (2bb,3bb,4bb.. OpenPush)

PostPosted: Fri Feb 08, 2013 12:17 pm
by js2002
With your definition Player can 2bet with size x and then do the shove as 3- or 4bet+.
I guess that is not wanted. Any hints on how I filter that out?


Ok checked this. This cant happen due to the first raise gets the raise made field.
But I found another problem with our stat.

There are hands that are openpushes where
tourney_hand_player_statistics.amt_p_raise_made = tourney_hand_player_statistics.amt_p_effective_stack is NOT TRUE
because
tourney_hand_player_statistics.amt_p_raise_made > tourney_hand_player_statistics.amt_p_effective_stack = TRUE exist!

These are spots where a bigstack Player pushes with the first raise allin vs stacks he has dominated.
Do you and kraada ;) think that
tourney_hand_player_statistics.amt_p_raise_made >= tourney_hand_player_statistics.amt_p_effective_stack will solve this problem?

Re: How to create a stat for OR (2bb,3bb,4bb.. OpenPush)

PostPosted: Fri Feb 08, 2013 1:42 pm
by kraada
You're right, that should be >=.

Re: How to create a stat for OR (2bb,3bb,4bb.. OpenPush)

PostPosted: Fri Feb 08, 2013 1:54 pm
by js2002
great, now i can go one with some things.

Hey kraada, we spoke about Range HUDs and your "old" M popup. Do u got anything finished? I also take betas ;)

chefsache@homegames.eu