Hi,
Im having trouble finding a way to do this ?!%$$
As im new to configuring a HUD... ( Respect to you guys who have made a HUD....Coffeyay, Polycarpus, Chadders... etc etc... Im lost !!! )
I'd like to add, or Im trying to find a way to set my HUD in PT3to show what my opponants ALL IN shoving % is ????
You know, then I can catch those cheeky buggers and give them a good spanking !
Any advice is really welcome :-)
Many Thanks,
You need to define a custom statistic for that. Here's some info to get you started with those.
www.pokertracker.com/guides/PT3/tutorials/custom-statistics-guide
You can also get help from PT's custom stats subforum.
Thanks for replying Ryan.
I will check out the link and see if I can crack this.
Cheers,
Go forth and CRUSH !
You need to define a custom statistic for that. Here's some info to get you started with those.
www.pokertracker.com/guides/PT3/tutorials/custom-statistics-guide
You can also get help from PT's custom stats subforum.
Here's my custom stat for PT4 for OS > 20bb. I'll leave it to you to work out how to change it to all stack sizes. I rename my columns to 'cnt_vpip_open_shove' etc and delete the stack size references.
Staistic
'VPIP Open Shove > 20bb'
(cnt_vpip_open_shove_greater_than_20bb / (cnt_hands_greater_than_20bb - cnt_walks_greater_than_20bb)) * 100
Custom Columns
'cnt_vpip_open_shove_greater_than_20bb'
sum(if[(tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) >= 20 AND tourney_hand_player_statistics.position = 9 AND tourney_hand_player_statistics.flg_vpip AND (tourney_hand_player_statistics.enum_allin='P') AND NOT tourney_hand_player_statistics.flg_p_3bet_def_opp, 1, 0])
'cnt_hands_greater_than_20bb'
sum(if[(tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) >= 20 AND tourney_hand_player_statistics.id_hand > 0, 1, 0])
'cnt_walks_greater_than_20bb'
sum(if[(tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) >= 20 AND lookup_actions_p.action = '', 1, 0])
Some of the custom stats in here may help, although I don't use/update this anymore and I know some of the database columns or variables have changed name
http://forumserver.twoplustwo.com/showpost.php?p=33177079&postcount=35