I’ve created a custom statistic to track the frequency of 3Bet Non-All-In vs a Minraise when I’m on the SB against the BB in a 3-Max format. Here’s the code I used for the columns:
cnt_3bet_non_allin_vs_minraise
- 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
AND tourney_hand_player_statistics.amt_p_raise_facing = (tourney_blinds.amt_bb * 2)
AND tourney_hand_player_statistics.position = 8
AND tourney_hand_summary.str_aggressors_p LIKE '9%'
AND tourney_hand_summary.cnt_players = 3, 1, 0])
cnt_3bet_non_allin_vs_minraise_opp
- Code: Select all
sum(if[
tourney_hand_player_statistics.flg_p_3bet_opp
AND tourney_hand_player_statistics.amt_p_raise_facing = (tourney_blinds.amt_bb * 2)
AND tourney_hand_player_statistics.position = 8
AND tourney_hand_summary.str_aggressors_p LIKE '9%'
AND tourney_hand_summary.cnt_players = 3, 1, 0])
And the statistic itself is calculated as:
- Code: Select all
(cnt_3bet_non_allin_vs_minraise / cnt_3bet_non_allin_vs_minraise_opp) * 100
Could you please confirm if the logic and implementation are correct? Are there any improvements or potential issues I should address?
Thanks in advance for your feedback!