Non-allin 3b %

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Non-allin 3b %

Postby TRNSLTR » Mon Sep 19, 2022 7:42 am

Hello! I would like to make a custom stat for nonallin 3bets - is there a way to indicate in the column expression that the size "wasn't allin" or is the only option to indicate specific size that the 3bet was smaller than like this:

sum(if[tourney_hand_player_statistics.flg_p_3bet AND tourney_hand_player_statistics.amt_p_raise_made <=12 * tourney_hand_player_statistics.amt_p_2bet_facing, 1, 0])

Obviously this is suboptimal because bigger sqz 3bets can also be above 12BB and smaller that 12BB 3bet can be allin. Also, if this is the way to do it, please confirm that my expression above looks to be correct.
TRNSLTR
 
Posts: 70
Joined: Fri Feb 12, 2010 3:24 pm

Re: Non-allin 3b %

Postby Flag_Hippo » Mon Sep 19, 2022 11:31 am

If the player 3Bets less than their effective stack then it was not an all-in. You can compare the size of the 3Bet made to the players effective stack with this:

Code: Select all
sum(if[tourney_hand_player_statistics.flg_p_3bet AND (tourney_hand_player_statistics.amt_p_raise_made < tourney_hand_player_statistics.amt_p_effective_stack), 1, 0])
Flag_Hippo
Moderator
 
Posts: 14441
Joined: Tue Jan 31, 2012 7:50 am

Re: Non-allin 3b %

Postby TRNSLTR » Mon Sep 19, 2022 5:01 pm

Flag_Hippo wrote:If the player 3Bets less than their effective stack then it was not an all-in. You can compare the size of the 3Bet made to the players effective stack with this:

Code: Select all
sum(if[tourney_hand_player_statistics.flg_p_3bet AND (tourney_hand_player_statistics.amt_p_raise_made < tourney_hand_player_statistics.amt_p_effective_stack), 1, 0])


Awesome, thank you!
TRNSLTR
 
Posts: 70
Joined: Fri Feb 12, 2010 3:24 pm


Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 15 guests

cron