I am trying to define a custom stat to count how often a player calls a flop check raise and then folds to a turn bet (heads up games).
It is based on the column:
sum(if[lookup_positions.flg_sb AND lookup_actions_f.action like 'BC' AND lookup_actions_t.action like 'F', 1, 0 ])
and the opportunities column:
sum(if[lookup_positions.flg_sb AND lookup_actions_f.action like 'BC' and tourney_hand_player_statistics.flg_t_cbet_def_opp, 1, 0 ])
This stat does not show any value in the HUD, however it will filter hands correctly in the Holdem Range Visualizer.
What is wrong with the stat definition?
Thanks.