Hi Guys,
I would like to create a stat, where the stat shows those 3bet situations, when the original raiser was raising max 30 % of his stack. So in case I commite myself, and make an "almost shove" lets say 9K from the 10K stack, and he put me allin, then it should ignore this situation as a 3bet opportunity.
I've tried to do this with the following:
(cnt_p_3bet_max30 / cnt_p_3bet_opp_max30) * 100 where
cnt_p_3bet_max30:
sum(if[tourney_hand_player_statistics.flg_p_3bet AND tourney_hand_player_statistics.amt_p_raise_made <= amt_p_effective_stack * 0.3, 1, 0])
cnt_p_3bet_opp_max30:
sum(if[tourney_hand_player_statistics.flg_p_3bet_opp AND tourney_hand_player_statistics.amt_p_raise_made <= amt_p_effective_stack * 0.3, 1, 0])
What did I mess up? How could I get the correct numbers?
Thanks,
supaflyer