limp call/limp fold to 17-30bb shove

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

limp call/limp fold to 17-30bb shove

Postby DJSpinThat » Sun Jan 15, 2017 5:07 pm

Hi, i'm having trouble knowing what to include for this,

Preflop Limp Call is
(cnt_p_limp_call / cnt_p_limp_faceraise) * 100

Preflop Limp Fold is
(cnt_p_limp_fold / cnt_p_limp_faceraise) * 100

cnt_p_limp_faceraise) is
sum(if[tourney_hand_player_statistics.flg_p_limp AND tourney_hand_player_statistics.flg_p_face_raise, 1, 0])

i added
tourney_hand_player_statistics.flg_p_open_opp AND
tourney_hand_player_statistics.flg_p_face_raise AND
(tourney_hand_player_statistics.amt_p_raise_made > tourney_hand_player_statistics.amt_p_effective_stack) -> to specify all in
(tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) between 17 and 30 --> to specify eff stack size

and put that all together, is that good?

I don't what i need to include for the
cnt_p_limp_call
sum(if[tourney_hand_player_statistics.flg_p_limp AND lookup_actions_p.action LIKE 'CC%', 1, 0])
cnt_p_limp_fold
sum(if[tourney_hand_player_statistics.flg_p_limp AND lookup_actions_p.action = 'CF', 1, 0])
DJSpinThat
 
Posts: 70
Joined: Mon Aug 18, 2014 5:49 pm

Re: limp call/limp fold to 17-30bb shove

Postby potamito » Sun Jan 15, 2017 5:29 pm

Thats exactly how i got mine written and it works great...

PF Limp/Call
Code: Select all
sum(if[tourney_hand_player_statistics.flg_p_limp and tourney_hand_player_statistics.flg_p_open_opp and tourney_hand_player_statistics.flg_p_face_raise and lookup_actions_p.action LIKE 'CC%' , 1, 0])


And obviously for PF Limp/Fold we just change the 'CC%' for 'CF%' , cheers.
potamito
 
Posts: 802
Joined: Wed Apr 21, 2010 4:20 pm

Re: limp call/limp fold to 17-30bb shove

Postby DJSpinThat » Tue Jan 17, 2017 4:22 am

how do you specify the villians position?

like limp called/limp folded vs the BB shove?

eg. if limp call is (cnt_p_limp_call / cnt_p_limp_faceraise) * 100 , then what do i need to include for the two columns?
DJSpinThat
 
Posts: 70
Joined: Mon Aug 18, 2014 5:49 pm

Re: limp call/limp fold to 17-30bb shove

Postby Flag_Hippo » Tue Jan 17, 2017 8:35 am

You can specify the position by using in "Item Properties" (top right) in the HUD profile editor and set the required Position property to the relevant position. If you want to specify the position in the stat itself you can do so using this:

Code: Select all
tourney_hand_player_statistics.position=8

In this case 8 is the big blind and you can refer to this guide for the other position numbers.
Flag_Hippo
Moderator
 
Posts: 14507
Joined: Tue Jan 31, 2012 7:50 am

Re: limp call/limp fold to 17-30bb shove

Postby DJSpinThat » Wed Jan 18, 2017 1:55 am

If i specify the position using item properties i get the stat when that player is in that position.
eg. if i specify BTN then the stat that shows is the %of times when the player limp calls when HE is on the BTN.
Thats not what i want.
I want the %times the player limp calls when the BTN limps.
DJSpinThat
 
Posts: 70
Joined: Mon Aug 18, 2014 5:49 pm

Re: limp call/limp fold to 17-30bb shove

Postby potamito » Wed Jan 18, 2017 2:59 am

im a bit confuse here...the situation you want to isolate is is the % of the time BU limp/call vs BB raise over his limp?
potamito
 
Posts: 802
Joined: Wed Apr 21, 2010 4:20 pm

Re: limp call/limp fold to 17-30bb shove

Postby DJSpinThat » Wed Jan 18, 2017 5:53 pm

Sorry i meant
limp fold/limp call when
when i am on the BTN and i limp and SB raises and
when i am on the BTN and i limp and BB raises.

In the item properties i specify the position as BTN, but how do i specify what position the raise is coming from?
DJSpinThat
 
Posts: 70
Joined: Mon Aug 18, 2014 5:49 pm

Re: limp call/limp fold to 17-30bb shove

Postby potamito » Wed Jan 18, 2017 8:00 pm

Would need confirmation on the mods but i think it will go like this...

DJSpinThat wrote:when i am on the BTN and i limp and SB raises

Code: Select all
tourney_hand_summary.str_actors_p like '80%' and tourney_hand_summary.str_aggressors_p like '89% '

when i am on the BTN and i limp and BB raises.

Code: Select all
tourney_hand_summary.str_actors_p like '80%' and tourney_hand_summary.str_aggressors_p like '88% '
potamito
 
Posts: 802
Joined: Wed Apr 21, 2010 4:20 pm

Re: limp call/limp fold to 17-30bb shove

Postby potamito » Wed Jan 18, 2017 10:00 pm

potamito wrote:Would need confirmation on the mods but i think it will go like this...

DJSpinThat wrote:when i am on the BTN and i limp and SB raises

Code: Select all
tourney_hand_summary.str_actors_p like '80%' and tourney_hand_summary.str_aggressors_p like '89% '

when i am on the BTN and i limp and BB raises.

Code: Select all
tourney_hand_summary.str_actors_p like '80%' and tourney_hand_summary.str_aggressors_p like '88% '

Sorry the code will go like this...

DJSpinThat wrote:when i am on the BTN and i limp and SB raises

Code: Select all
tourney_hand_summary.str_actors_p like '09%' and tourney_hand_summary.str_aggressors_p like '89% '

when i am on the BTN and i limp and BB raises.

Code: Select all
tourney_hand_summary.str_actors_p like '08%' and tourney_hand_summary.str_aggressors_p like '88% '


The difference is here, i first wrote '80%' and it should be '08%' cuz this way it implies that the first actor was the BU and the second one was the BB andin the aggressor string will go '88%' as the first raise was made by the BB.
potamito
 
Posts: 802
Joined: Wed Apr 21, 2010 4:20 pm

Re: limp call/limp fold to 17-30bb shove

Postby Flag_Hippo » Thu Jan 19, 2017 10:15 am

You need to define the actions using expressions which are true from the point of view of the active player. Anything using "tourney_hand_player_statistics" is specific to that player (the player the stat is displayed for) and anything using "tourney_hand_summary" refer to the hand so you can use the actors and aggressors strings as potamito posted which are the same regardless of which players perspective you're looking at. See this post for more information on how to use the actors and aggressors strings.
Flag_Hippo
Moderator
 
Posts: 14507
Joined: Tue Jan 31, 2012 7:50 am


Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 25 guests

cron