kraada wrote:Create the following two columns:
cnt_p_4b_fold: sum(if[holdem_hand_player_statistics.flg_p_4bet and holdem_hand_player_statistics.enum_folded = 'P', 1, 0])
cnt_p_4b_face_shove: sum(if[holdem_hand_player_statistics.flg_p_4bet and holdem_hand_player_statistics.enum_face_allin = 'P', 1, 0])
Put the former over the latter in the statistic and multiply by 100 to get a percentage.
can we include something, that the shove is bigger than 90bb for example?!
because 4bet/calling for 50bb is always a call
edit:
will try out this solution:
cnt_p_4b_face_shove: sum(if[holdem_hand_player_statistics.flg_p_4bet and holdem_hand_player_statistics.enum_face_allin = 'P', 1, 0
AND holdem_hand_summary.amt_p_effective_stack>=80])
edit2: my solution did not work