Open shove from EPandMP 6-12bb

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Open shove from EPandMP 6-12bb

Postby rhalala » Tue May 07, 2013 5:13 pm

Hello iam trying to create this stat, unfortunately isnt working.. always 0

(cnt_p_open_shove_epmp613 / cnt_p_open_shove_opp_ep613) * 100

cnt_p_open_shove_epmp613 =
sum(if[tourney_hand_player_statistics.flg_p_first_raise and tourney_hand_player_statistics.flg_p_open_opp and lookup_actions_p.action = 'R' and tourney_hand_player_statistics.amt_p_raise_made = (tourney_hand_player_statistics.amt_before - tourney_hand_player_statistics.amt_ante) AND substring(tourney_hand_summary.str_aggressors_p from 2 for 1)::int BETWEEN 4 AND 6, 1, 0])



cnt_p_open_shove_opp_ep613 =
sum(if[tourney_hand_player_statistics.flg_p_open_opp AND tourney_hand_player_statistics.flg_p_open_opp AND tourney_hand_player_statistics.amt_p_raise_made / tourney_blinds.amt_bb > 4 AND substring(tourney_hand_summary.str_aggressors_p from 2 for 1)::int BETWEEN 2 and 3 AND tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb BETWEEN 6 and 12, 1, 0])


Thank you very much!
rhalala
 
Posts: 47
Joined: Sun Jun 01, 2008 6:38 am

Re: Open shove from EPandMP 6-12bb

Postby kraada » Tue May 07, 2013 5:56 pm

You want tourney_hand_player_statistics.amt_p_raise_made >= tourney_hand_player_statistics.amt_p_effective_stack - that way if someone is short behind you and you bet their stack it counts also.

You also don't need to make it EP specific - just use the Early Position Position Item Property in the HUD editor - then you can make one stat and use it for all 6 position options!
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: Open shove from EPandMP 6-12bb

Postby rhalala » Tue May 07, 2013 8:22 pm

ok! i will try thank you,!

yes i need it because i want both EP and MP in the same stat!

thank you!
rhalala
 
Posts: 47
Joined: Sun Jun 01, 2008 6:38 am

Re: Open shove from EPandMP 6-12bb

Postby rhalala » Wed May 08, 2013 5:27 am

no, still 0 ..

here what i change,, cant see what is bad here,,
Oportunitis oop , seems working

sum(if[tourney_hand_player_statistics.flg_p_first_raise and tourney_hand_player_statistics.flg_p_open_opp and lookup_actions_p.action = 'R' and tourney_hand_player_statistics.amt_p_raise_made = (tourney_hand_player_statistics.amt_before - tourney_hand_player_statistics.amt_ante) AND substring(tourney_hand_summary.str_aggressors_p from 2 for 1)::int BETWEEN 4 AND 6, 1, 0])


thank you
rhalala
 
Posts: 47
Joined: Sun Jun 01, 2008 6:38 am

Re: Open shove from EPandMP 6-12bb

Postby kraada » Wed May 08, 2013 9:27 am

As I said above, replace: tourney_hand_player_statistics.amt_p_raise_made = (tourney_hand_player_statistics.amt_before - tourney_hand_player_statistics.amt_ante)

with:
tourney_hand_player_statistics.amt_p_raise_made >= tourney_hand_player_statistics.amt_p_effective_stack
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: Open shove from EPandMP 6-12bb

Postby rhalala » Wed May 08, 2013 7:50 pm

sorry, make wrong copypast, yes i change it

sum(if[tourney_hand_player_statistics.flg_p_first_raise and tourney_hand_player_statistics.flg_p_open_opp and lookup_actions_p.action = 'R' and tourney_hand_player_statistics.amt_p_raise_made >= tourney_hand_player_statistics.amt_p_effective_stack AND substring(tourney_hand_summary.str_aggressors_p from 2 for 1)::int BETWEEN 4 AND 6, 1, 0])


But the stat still 0 :(

Thank you!

Edit , i think i made a better version, still 0 :(

sum(if[tourney_hand_player_statistics.flg_p_first_raise and tourney_hand_player_statistics.flg_p_open_opp and lookup_actions_p.action = 'R' and tourney_hand_player_statistics.amt_p_raise_made >= tourney_hand_player_statistics.amt_p_effective_stack AND substring(tourney_hand_summary.str_aggressors_p from 2 for 1)::int BETWEEN 2 AND 3 and tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb BETWEEN 6 and 12, 1, 0])
rhalala
 
Posts: 47
Joined: Sun Jun 01, 2008 6:38 am

Re: Open shove from EPandMP 6-12bb

Postby kraada » Thu May 09, 2013 8:19 am

I see no reason why that wouldn't work. Are you sure you have data from those situations? It is fairly specific.
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: Open shove from EPandMP 6-12bb

Postby rhalala » Thu May 09, 2013 8:41 am

kraada wrote:I see no reason why that wouldn't work. Are you sure you have data from those situations? It is fairly specific.


i got 300k+ hands on myself , and a lot of players with 5 6k hands, and everybody 0 but i can see the opportunities 0/240 0/114 etc
thank you for your help
rhalala
 
Posts: 47
Joined: Sun Jun 01, 2008 6:38 am

Re: Open shove from EPandMP 6-12bb

Postby kraada » Thu May 09, 2013 10:01 am

Perhaps it's a parentheses issue? Try: (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 6 and 12
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: Open shove from EPandMP 6-12bb

Postby rhalala » Thu May 09, 2013 10:03 am

kraada wrote:Perhaps it's a parentheses issue? Try: (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 6 and 12


still 0 , sorry.. i will try delete position, thx!


Still 0 , is not a position problem
rhalala
 
Posts: 47
Joined: Sun Jun 01, 2008 6:38 am

Next

Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 14 guests

cron
highfalutin