column size cbet between 2 sizes

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

column size cbet between 2 sizes

Postby Onani » Thu Oct 31, 2024 8:39 am

Hello, I am creating these columns, how could I make one that is, for example, size equal to or greater than 66% pot and less than 75% pot?

thank you so much

Minbet flop %
(cnt_minbet_flop / cnt_f_cbet) * 100

cnt_minbet_flop
sum(if[(cash_hand_player_statistics.flg_f_cbet AND cash_hand_player_statistics.val_f_bet_made_pct < 40)
, 1, 0])

cnt_cbet_flop_mediopot
sum(if[(cash_hand_player_statistics.flg_f_cbet AND cash_hand_player_statistics.val_f_bet_made_pct = 50)
, 1, 0])

cnt_cbet_flop_dostercios
sum(if[(cash_hand_player_statistics.flg_f_cbet AND cash_hand_player_statistics.val_f_bet_made_pct = 66)
, 1, 0])

cnt_cbet_flop_trescuartos
sum(if[(cash_hand_player_statistics.flg_f_cbet AND cash_hand_player_statistics.val_f_bet_made_pct = 75)
, 1, 0])
Onani
 
Posts: 7
Joined: Sat Sep 05, 2020 10:58 am

Re: column size cbet between 2 sizes

Postby Flag_Hippo » Fri Nov 01, 2024 7:11 am

Onani wrote:Hello, I am creating these columns, how could I make one that is, for example, size equal to or greater than 66% pot and less than 75% pot?

That would be:

Code: Select all
cash_hand_player_statistics.val_f_bet_made_pct >= 66 and cash_hand_player_statistics.val_f_bet_made_pct < 75
Flag_Hippo
Moderator
 
Posts: 15169
Joined: Tue Jan 31, 2012 7:50 am

Re: column size cbet between 2 sizes

Postby Onani » Fri Nov 01, 2024 11:01 am

I get this error, what am I doing wrong?


[img][img]https://i.ibb.co/vhRS8K9/Captura.png[/img][/img]

Sorry I had to click on the image, I didn't know how to do it so it appears in the message
Onani
 
Posts: 7
Joined: Sat Sep 05, 2020 10:58 am

Re: column size cbet between 2 sizes

Postby Flag_Hippo » Sat Nov 02, 2024 7:24 am

Have everything in lowercase and that should fix it:

Code: Select all
cash_hand_player_statistics.flg_f_cbet and cash_hand_player_statistics.val_f_bet_made_pct >= 79 and cash_hand_player_statistics.val_f_bet_made_pct < 90
Flag_Hippo
Moderator
 
Posts: 15169
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 12 guests

cron