I am trying to create a "Check Raise Flop CBet" stat by the following
(cnt_f_check_raise_cbet / cnt_f_check_raise_cbet_opp) * 100
cnt_f_check_raise_cbet:
sum(if[holdem_hand_player_statistics.flg_f_check_raise AND holdem_hand_player_statistics.flg_f_cbet_def_opp, 1, 0])
cnt_f_check_raise_cbet_opp:
sum(if[holdem_hand_player_statistics.flg_f_check AND
holdem_hand_player_statistics.flg_f_cbet_def_opp AND(holdem_hand_player_statistics.cnt_f_raise > 0 OR holdem_hand_player_statistics.cnt_f_call > 0 OR holdem_hand_player_statistics.flg_f_fold), 1, 0])
Format expr:
if (cnt_f_check_raise_cbet_opp < 10, 'X', format('{1} ({2}/{3})',format_number((cnt_f_check_raise_cbet / cnt_f_check_raise_cbet_opp) * 100,0,false,false), cnt_f_check_raise_cbet,cnt_f_check_raise_cbet_opp))
However, when I add this to my HUD, stats for all other players but hero disappears. When I remove the stat from the HUD, everything works. This tells me that the stat is buggy, what is the problem?