Hi,
I'm building some stats and they seems to work but when I add them to my hud, their times/opportunities doesn't match with expected ones.
Here is an example:
Stat: BB calls an SB open in a 3+ players dealt hand, the pot goes HU, and then fold to a flop CBet.
Expression:
(opportunities)
sum(if[cash_hand_player_statistics.position=8
AND cash_hand_summary.cnt_players > 2
AND cash_hand_summary.cnt_players_f = 2
AND lookup_actions_p.action='C'
AND cash_hand_player_statistics.val_f_bet_aggressor_pos=9
AND cash_hand_player_statistics.flg_f_cbet_def_opp , 1, 0])
(times expression is the same but adding lookup_actions_f.action='F')
I made a Hand Report to check if it is working correctly, and all the hand replays match with the expressions.
Then, I add the stat to my HUD without filtering it expecting to see (3/9) (times/opportunities) as in the Hand Report but it's shown (4/23).
(If I filter the stat by Position = BB somehow it shows (4/9))
Don't know if it's related but in Reports and Graphs the amount of hands computed are exactly the half than in "cnt_hands", the amount I see in HUD.
What am I missing?
Thanks in advance.