i tried to configure ONE new statistic: how often a player (on the button and in the blinds) 3bets our steal attempt. And all of this in one new value. I get apparently reasonable results for myself (around 10%), but if i add this new statistic to the Player Statistics window (or somewhere else), it says that i have 900k hands, which is way off of course.
Here is the Value Expression:
- Code: Select all
((cnt_bu_3bet_steal / cnt_bu_3bet_steal_opp) * 100 + (cnt_bb_steal_raise / cnt_steal_def_opp_bb) * 100 + (cnt_sb_steal_raise / cnt_steal_def_opp_sb) * 100) / 3
cnt_bu_3bet_steal is:
- Code: Select all
sum(if[ lookup_positions.position = 0 AND holdem_hand_player_statistics.flg_steal_att AND holdem_hand_player_statistics.flg_p_3bet_def_opp AND holdem_hand_player_statistics.enum_p_3bet_action='R' , 1 , 0 ])
and cnt_bu_3bet_steal_opp:
- Code: Select all
sum(if[lookup_positions.position = 0 AND holdem_hand_player_statistics.flg_steal_att AND holdem_hand_player_statistics.flg_p_3bet_def_opp, 1 , 0 ])[/QUOTE]
I just copied the Columns cnt_steal_reraise_def_opp and cnt_steal_reraise_def_action_fold for the last two and added the position component.
Could you tell me what is wrong with it?
I know that new Statistics should be posted in Repository, but it isn't done yet and i don't know if it ever will be.
