Open shove with various stack sizes

Discuss how to create custom stats, reports and HUD profiles and share your creations.

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Open shove with various stack sizes

Postby Leem » Thu Jan 30, 2014 4:56 am

Hi guys,

Trying to make an open shove stat with various stack sizes. eg. Player open shoves 0-10BBs with this %.

I would like to make a generic stat position wise, so that I can just change the positions in the 'item properties'.

Have this for just open shove...

cnt_p_open_shove
sum(if[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])

cnt_p_open_opp
sum(if[tourney_hand_player_statistics.flg_p_open_opp, 1, 0])

Both seem to work absolutely fine. Now what I want to do is add stack sizes please guys, to give me 'player open shoves 0-10BB' %' Or 'Player open shoves > 20 BBs %'

Thanks very much in advance as always
Leem
 
Posts: 79
Joined: Thu May 19, 2011 5:06 pm

Re: Open shove with various stack sizes

Postby kraada » Thu Jan 30, 2014 9:51 am

You need to add an extra clause. This would be "the open shove was less than 10 big blinds":

(tourney_hand_player_statistics.amt_p_raise_made / tourney_blinds.amt_bb) < 10

You can change the inequality as you need.
kraada
Moderator
 
Posts: 54430
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: Open shove with various stack sizes

Postby Leem » Thu Jan 30, 2014 10:12 am

Ok cheers Kraada, will give it a go.

Thanks again
Leem
 
Posts: 79
Joined: Thu May 19, 2011 5:06 pm

Re: Open shove with various stack sizes

Postby Leem » Thu Jan 30, 2014 10:33 am

cnt_p_open_shove_12bbs

sum(if[(tourney_hand_player_statistics.amt_p_raise_made / tourney_blinds.amt_bb) < 12 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])

cnt_p_open_opp_12bb

sum(if[(tourney_hand_player_statistics.amt_p_raise_made / tourney_blinds.amt_bb) < 12 AND tourney_hand_player_statistics.flg_p_open_opp, 1, 0])


How does this look to you Kraada? Make sense?

Cheers again, Lee
Leem
 
Posts: 79
Joined: Thu May 19, 2011 5:06 pm

Re: Open shove with various stack sizes

Postby kraada » Thu Jan 30, 2014 10:51 am

Looks good.
kraada
Moderator
 
Posts: 54430
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: Open shove with various stack sizes

Postby Leem » Thu Jan 30, 2014 11:41 am

Hi Kraada,

Just checking some of the stats I created and for open shoving BBs between 1 and 5 it shows me as 0/2 for this session in one of my games. This doesn't make sense because I was never down to 5 or less BBs all game (pretty much 10+). Any ideas?

Thanks in advance.

EDIT: Here is the stat I mentioned

cnt_p_open_shove_1_5BBs

sum(if[(tourney_hand_player_statistics.amt_p_raise_made / tourney_blinds.amt_bb) between 1 and 5 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])

cnt_p_open_opp_1_5BBs

sum(if[(tourney_hand_player_statistics.amt_p_raise_made / tourney_blinds.amt_bb) between 1 and 5 AND tourney_hand_player_statistics.flg_p_open_opp, 1, 0])
Leem
 
Posts: 79
Joined: Thu May 19, 2011 5:06 pm

Re: Open shove with various stack sizes

Postby kraada » Thu Jan 30, 2014 12:14 pm

It's based on effective stack -- if you're in the SB and everyone folds to you it doesn't matter if your stack is 1500BB if the person in the big blind only has 4BBs, then your effective stack is 4BBs. I'm guessing it was something like that that did it; the stat looks fine.
kraada
Moderator
 
Posts: 54430
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: Open shove with various stack sizes

Postby Leem » Thu Jan 30, 2014 12:41 pm

I think what I am getting is, I just noticed when I shove with a stack it is 100% and when I don't is 0% = just yes or no. Just folded a hand with a 10bb stack from BTN, never opened, still shows 100%. Something to do with the sum???

Any ideas?
Leem
 
Posts: 79
Joined: Thu May 19, 2011 5:06 pm

Re: Open shove with various stack sizes

Postby Leem » Thu Jan 30, 2014 1:09 pm

Would also note that I have an open shove for > 36 BBs and that doesn't show anything, not even 0. Surely everyone would have at least a 0 because they chose not to shove > 36 BBs when given the opportunity. Definitely not right.

Cheers in advance.
Leem
 
Posts: 79
Joined: Thu May 19, 2011 5:06 pm

Re: Open shove with various stack sizes

Postby kraada » Thu Jan 30, 2014 2:18 pm

In the oportunity column you're using actual raise made for your sizing; instead you want to test effective stack size as follows:

sum(if[(tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) between 1 and 5 AND tourney_hand_player_statistics.flg_p_open_opp, 1, 0])
kraada
Moderator
 
Posts: 54430
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Next

Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 69 guests