Hi Guys,
I'm trying to write a HU stat, which shows in how many percentages calls the enemy call our minraises.
I've tried it with the following definition:
(cnt_p_mr_call / cnt_p_mr_call_opp) * 100
cnt_p_mr_call
sum(if[(tourney_hand_player_statistics.amt_p_raise_facing / tourney_blinds.amt_bb) <= 2.25 AND lookup_actions_p.action LIKE 'C', 1, 0])
cnt_p_mr_call_opp
sum(if[(tourney_hand_player_statistics.amt_p_raise_facing / tourney_blinds.amt_bb) <= 2.25 AND lookup_actions_p.action LIKE '_', 1, 0])
My stat is not working properly, could you please tell me where is the problem? :S It also counts the SB limp as an opportunity to call a min raise.
Where is the problem in my stat?
Thanks,
supaflyer