Hello,
I'm trying to create a stat for a custom report, not for my HUD. I know that you can use positional parameters for your HUD and was hoping that it would be easy to modify the already-existed 3bet vs. btn open, but i was unable to find it.
Ideally, I'd like to be able to see the percentage of hands that someone 3bets vs. a btn open from the sb.
I saw the definition was:
(cnt_p_3bet_vs_btn_open / cnt_p_3bet_opp_vs_btn_open) * 100
and the code for both those columns was, respectively:
sum(if[cash_hand_player_statistics.flg_p_3bet and cash_hand_summary.str_aggressors_p LIKE '80%' and cash_hand_summary.str_actors_p LIKE '0%', 1, 0])
sum(if[cash_hand_player_statistics.flg_p_3bet_opp and cash_hand_summary.str_aggressors_p LIKE '80%' and cash_hand_summary.str_actors_p LIKE '0%', 1, 0])
Is there a way to modify these columns to include SB only from the 3bettors? Like adding a where clause somewhere?
Thanks