Hi, just trying to make a stat I obtained from the repository positional. This is the stat; let's say I want it for UTG and HJ so positions 2 and 3 in 6-max.
((cnt_f_bet + cnt_f_raise + cnt_t_bet + cnt_t_raise + cnt_r_bet + cnt_r_raise)/(cnt_f_call + cnt_f_fold + cnt_f_bet + cnt_f_raise + cnt_f_check + cnt_t_call + cnt_t_fold + cnt_t_bet + cnt_t_raise + cnt_t_check + cnt_r_call + cnt_r_fold + cnt_r_bet + cnt_r_raise + cnt_r_check))*100
So do I just add something like below to the value window or do I have to create positional counts for all the cnt_f_bet things?
if[holdem_hand_player_statistics.position = 2,1,0 OR 3,1,0]
Thanks in advance!
