hi guys.
I'm looking to do an average stack size for one player (to know if the stats I have on him are when deep or short) and a stat to see the % of time he has been dealt a hand with less than 100bbs
I have done amt_total_stack / cnt_hands with
amt_total_stack = sum(cash_hand_player_statistics.amt_before)
But for someone is always rebuying it gives me an average of 67bbs... whitch is impossible because he always begin a hands with 100bb+...
Could you tell me where is the problem?
for the other one (% of time he has been dealt a hand with less than 100bbs)
I have done ( cnt_not_full / cnt_hands ) * 100 with
cnt_not_full = sum( if[val_p_stack_size < 10, 1, 0] )
but I can't put it in my HUD it's not apearing... any idea why?
Thanks for the help !