Making a shove over limp stat

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Making a shove over limp stat

Postby Tarhsid » Sat Mar 11, 2017 2:36 am

Heads up. SB limps. BB bets at least the effective stack.

How could I make a stat like this for tournaments? I'm looking to find the population tendency.
Tarhsid
 
Posts: 7
Joined: Thu Jun 04, 2015 7:50 pm

Re: Making a shove over limp stat

Postby Flag_Hippo » Sat Mar 11, 2017 8:00 am

There is a 'Raise With SB Limper When in BB' custom statistic available for download in the Download Warehouse which you can convert to a tournament stat and then edit for BB raising for at least the effective stack with:

Code: Select all
tourney_hand_player_statistics.amt_p_raise_made >= tourney_hand_player_statistics.amt_p_effective_stack

See this guide for the basics on custom statistics creation and this guide for a deeper walkthrough. The latter was written for PokerTracker 3 but the techniques all apply to PokerTracker 4, the interface is just slightly different.
Flag_Hippo
Moderator
 
Posts: 14514
Joined: Tue Jan 31, 2012 7:50 am

Re: Making a shove over limp stat

Postby potamito » Sat Mar 11, 2017 12:58 pm

Tarhsid wrote:Heads up. SB limps. BB bets at least the effective stack.


Action Column
Code: Select all
sum(if[tourney_hand_player_statistics.cnt_p_face_limpers = 1  AND(NOT(tourney_hand_player_statistics.flg_p_limp and tourney_hand_player_statistics.flg_p_open_opp)) and tourney_hand_player_statistics.flg_p_first_raise   and  (tourney_hand_player_statistics.amt_p_raise_made > tourney_hand_player_statistics.amt_p_effective_stack) and tourney_hand_summary.str_actors_p LIKE '9%'  and tourney_hand_player_statistics.position = 8 and tourney_hand_player_statistics.cnt_players = 2, 1, 0])


Opportunity Column
Code: Select all
sum(if[tourney_hand_player_statistics.cnt_p_face_limpers = 1  AND(NOT(tourney_hand_player_statistics.flg_p_limp and tourney_hand_player_statistics.flg_p_open_opp)) and tourney_hand_summary.str_actors_p LIKE '9%'  and tourney_hand_player_statistics.position = 8 and tourney_hand_player_statistics.cnt_players = 2, 1, 0])
potamito
 
Posts: 802
Joined: Wed Apr 21, 2010 4:20 pm

Re: Making a shove over limp stat

Postby Tarhsid » Sun Mar 12, 2017 7:47 pm

Thanks to both of you for the reply
Tarhsid
 
Posts: 7
Joined: Thu Jun 04, 2015 7:50 pm


Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 23 guests

cron
highfalutin