by joker » Sat Dec 12, 2009 7:15 pm
So I tried to modify also "fold BB to steal" and "fold SB to steal" stat, because people are behaving quite differently when you just minraising them. So i created these new stats :
(cnt_sb_steal_fold_21 / cnt_steal_def_opp_sb_21) * 100
cnt_sb_steal_fold_21:
sum(if[holdem_hand_player_statistics.flg_sb_steal_fold AND holdem_hand_player_detail.val_p_raise_facing_pct BETWEEN 44.3 and 44.5, 1, 0])
cnt_steal_def_opp_sb_21:
sum( if[holdem_hand_player_statistics.flg_blind_def_opp AND holdem_hand_player_statistics.flg_blind_s AND holdem_hand_player_detail.val_p_raise_facing_pct BETWEEN 44.3 and 44.5, 1, 0])
(cnt_bb_steal_fold_21 / cnt_steal_def_opp_bb_21) * 100
cnt_bb_steal_fold_21:
sum( if[holdem_hand_player_statistics.flg_blind_def_opp AND holdem_hand_player_statistics.flg_blind_b AND holdem_hand_player_detail.val_p_raise_facing_pct BETWEEN 30.5 and 30.6, 1, 0])
cnt_steal_def_opp_bb_21:
sum(if[holdem_hand_player_statistics.flg_bb_steal_fold AND holdem_hand_player_detail.val_p_raise_facing_pct BETWEEN 30.5 and 30.6, 1, 0])
and while the SB stat work good and shows same number as my custom report for opening to 2.1BB, BB stat shows slightly different numbers and counts only with cca half of hands - stat shows 88.89 % - 32/35 and report shows 88.91 - 45/53. Do you know what makes this difference and what value is right ? Thank you.