kraada wrote:True, in that case use holdem_hand_player_statistics.flg_won though make sure to have not(turn saw) otherwise you end up getting all hands you won that you cbet and that's going to be such a lot of hands that it's going to be hard to gauge how well the c-bet worked.
Personally I'd rather make a bet/3bet statistic and see how often that wins; the idea behind this stat was to see how often your cbets just win without further action, to answer the question of how often you should cbet regardless of cards/board texture/etc. If you want a stat for slightly different reasons that changes how you'd want the definition.
Good points.
Before your reply I was looking through the schema and wondering how I would approach the problem. Would this work also:
- Code: Select all
sum(if[holdem_hand_player_statistics.flg_f_cbet AND NOT(holdem_hand_player_statistics.flg_t_saw) AND NOT(holdem_hand_player_statistics.flg_f_fold), 1, 0])