I'm trying to add custom stats for 4bet+ preflop after raising from a specific position vs specific 3bet position. I'm asking help for EP vs MP 3bet just for example, because I think the formula will be the same for every position vs position (needs only change positions parameters).
I have created the following value expression
- Code: Select all
(cnt_p_4bet_from_ep_vs_mp / cnt_p_4bet_opp_from_ep_vs_mp) *100
where first column is
- Code: Select all
sum(if[cash_hand_player_statistics.flg_p_first_raise and cash_hand_player_statistics.flg_p_4bet and cash_hand_summary.str_aggressors_p LIKE '8323%' and cash_hand_summary.str_actors_p LIKE '3%', 1, 0])
I'm in trouble with the second one, I don't know how to write them. I need the count of opportunity of 4betting after raise first in preflop from EP vs MP 3bet.
Hope you can help me
Cheers