Page 1 of 2

shove % on button with 10 bb

PostPosted: Thu Feb 18, 2016 1:17 pm
by vankammen
Is there a stat like this? Customizable of course for multiple positions and variable stack sizes?

Re: shove % on button with 10 bb

PostPosted: Thu Feb 18, 2016 3:05 pm
by kraada
There isn't a default stat for this but you could certainly build one.

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

Re: shove % on button with 10 bb

PostPosted: Thu Feb 18, 2016 3:43 pm
by potamito
i´ve build several custom stats like those you want, i could share them in the wharehouse if i knew how :D :P i build positional open shove stats for 0bb-1bb and 12bb-16bb effective stacks.

Re: shove % on button with 10 bb

PostPosted: Thu Feb 18, 2016 3:49 pm
by potamito
I just upload them to the Download Customizations tab just search it by Positional Open Shove Custom Stats, if you want to modify the effective stack sizes just edit them is very easy, cheers.

Re: shove % on button with 10 bb

PostPosted: Thu Feb 18, 2016 4:04 pm
by vankammen
potamito wrote:I just upload them to the Download Customizations tab just search it by Positional Open Shove Custom Stats, if you want to modify the effective stack sizes just edit them is very easy, cheers.

cool. thanks. where can i find that?
https://www.pokertracker.com/custom/stats (could not find it here)

Re: shove % on button with 10 bb

PostPosted: Thu Feb 18, 2016 4:34 pm
by kraada
They hadn't been published yet - I went ahead and approved them and you should see them now.

Re: shove % on button with 10 bb

PostPosted: Fri Feb 19, 2016 12:37 pm
by vankammen
thanks. still running into problems.

The expression for shoves 12-16bb is:

(cnt_p_open_shove_btn_12_16 / cnt_p_open_shove_opp_btn_12_16) * 100

but when i change the values 12-16 to say 08-12. To get shoves from 8-12bb. I get an invalid expression. What am i doing wrong here?

(cnt_p_open_shove_btn_08_12 / cnt_p_open_shove_opp_btn_08_12) * 100

Re: shove % on button with 10 bb

PostPosted: Fri Feb 19, 2016 12:49 pm
by vankammen
nevermind. i got it. you need to change the columns. thank you very much guys! :)

This is the culumn for a cutoff shove:

sum(if[(tourney_hand_player_statistics.amt_p_raise_made / tourney_blinds.amt_bb) BETWEEN 08 AND 11.99 AND tourney_hand_player_statistics.position = 1 AND tourney_hand_player_statistics.amt_p_raise_made >= tourney_hand_player_statistics.amt_p_effective_stack and tourney_hand_player_statistics.flg_p_first_raise and
tourney_hand_player_statistics.flg_p_open_opp, 1, 0])


does this take effective stacks into account? Or will this also get all the times when villain stack size is between 8-12 but the
effective stack is smaller (say 5bb).

Re: shove % on button with 10 bb

PostPosted: Fri Feb 19, 2016 1:20 pm
by kraada
You do not have a restriction on the effective stack size. To add that the effective stack is greater than 8bb, you could add in (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) >= 8 and that would add the restriction you want.

Re: shove % on button with 10 bb

PostPosted: Fri Feb 19, 2016 1:26 pm
by vankammen
kraada wrote:You do not have a restriction on the effective stack size. To add that the effective stack is greater than 8bb, you could add in (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) >= 8 and that would add the restriction you want.


thanks. do i still need the first line then?

(tourney_hand_player_statistics.amt_p_raise_made / tourney_blinds.amt_bb) BETWEEN 08 AND 11.99

because if the effective stack is between 8 en 12..that should be enough.doesnt really matter what villains stack is..does it?

highfalutin