i have made some custom stats for players calling different percents of the potsize
using this tourney_holdem_hand_player_detail.val_f_bet_facing_pct
the problem is that when there are multible callers the the potsize increases
so the first caller is not faced with the same percent size of the pot as the second caller
is there a solution to this
here is the stat i use for 90-110% of the potsize
(cnt_f_bet_90_110pct_action_call / cnt_f_bet_90_110pct_def_opp) * 100
cnt_f_bet_90_110pct_action_call =
sum( if[tourney_holdem_hand_player_detail.val_f_bet_facing_pct<= 52.4 AND tourney_holdem_hand_player_detail.val_f_bet_facing_pct>47.3 AND (lookup_actions_f.action SIMILAR TO '(C|XC)%') , 1 , 0 ] )
cnt_f_bet_90_110pct_def_opp=
sum( if[tourney_holdem_hand_player_detail.val_f_bet_facing_pct<= 52.4 AND tourney_holdem_hand_player_detail.val_f_bet_facing_pct>47.3 , 1 , 0 ] )
