Page 1 of 1

cb size hud stat

PostPosted: Thu Mar 04, 2021 7:48 pm
by Pistone89
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!

Re: cb size hud stat

PostPosted: Fri Mar 05, 2021 6:57 am
by Flag_Hippo
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.

Re: cb size hud stat

PostPosted: Fri Mar 05, 2021 12:17 pm
by Pistone89
thanks. im still new to all of this but it seems doable. gonna try :)

Re: cb size hud stat

PostPosted: Fri Mar 05, 2021 12:19 pm
by Pistone89
<= 40, 1, 0]) does this refer to over and under a certain sizings?

Re: cb size hud stat

PostPosted: Fri Mar 05, 2021 1:54 pm
by Flag_Hippo
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.

highfalutin