cb size hud stat

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

cb size hud stat

Postby Pistone89 » Thu Mar 04, 2021 7:48 pm

hey, is it possible to have a hud stat which shows you % of flop cb for instance taking sizing into account? like lets say how often a players cbets less than 40% pot and how often over that?

thanks!
Pistone89
 
Posts: 3
Joined: Mon Jun 06, 2016 9:13 am

Re: cb size hud stat

Postby Flag_Hippo » Fri Mar 05, 2021 6:57 am

You can create a custom column to count the frequency of that:

cnt_f_cbet_40
Code: Select all
sum(if[cash_hand_player_statistics.flg_f_cbet AND cash_hand_player_statistics.val_f_bet_made_pct <= 40, 1, 0])

and then calculate the percentage in a new custom statistic:

Code: Select all
(cnt_f_cbet_40 / cnt_f_cbet) * 100

If you need it this guide covers the basics on custom statistics creation.
Flag_Hippo
Moderator
 
Posts: 14441
Joined: Tue Jan 31, 2012 7:50 am

Re: cb size hud stat

Postby Pistone89 » Fri Mar 05, 2021 12:17 pm

thanks. im still new to all of this but it seems doable. gonna try :)
Pistone89
 
Posts: 3
Joined: Mon Jun 06, 2016 9:13 am

Re: cb size hud stat

Postby Pistone89 » Fri Mar 05, 2021 12:19 pm

<= 40, 1, 0]) does this refer to over and under a certain sizings?
Pistone89
 
Posts: 3
Joined: Mon Jun 06, 2016 9:13 am

Re: cb size hud stat

Postby Flag_Hippo » Fri Mar 05, 2021 1:54 pm

Only the <= 40 part is referencing the sizing (less than or equal to 40). Other operators that can be used are:

= (equals)
>= (greater than or equal to)
< (less than)
> (greater than)
between x and y

The , 1, 0]) at the end is part of the encompassing sum(if[, 1, 0]) statement - see this post for further details.
Flag_Hippo
Moderator
 
Posts: 14441
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 18 guests

cron
highfalutin