by kraada » Wed Dec 17, 2008 2:38 pm
Okay there's two stats here:
And I'm going to describe things from the perspective of the person on whom the stat is given. That is, for an opponent A, I'm describing the stat from A's point of view.
Stat #1:
(I've fixed a couple of things in the definition hence I'm giving it again.)
Probe Bet in Raised Pots:
How often you bet into a raised pot after the preflop aggressor checks to you.
cnt_f_probe_bet_raised_pot:
sum(if[flg_f_bet and flg_p_face_raise and not(flg_f_cbet_opp) and holdem_hand_player_detail.val_p_raise_aggressor_pos > holdem_hand_player_statistics.position, 1, 0])
cnt_f_probe_bet_raise_pot_opp:
sum(if[flg_f_open_opp and flg_p_face_raise and not(flg_f_cbet_opp) and holdem_hand_player_detail.val_p_raise_aggressor_pos > holdem_hand_player_statistics.position, 1, 0])
Stat #2:
Fold to Probe Bet in Raised Pots:
cnt_f_probe_bet_raise_pot_def_opp:
sum(if[flg_f_cbet_opp and flg_f_check and flg_f_face_bet, 1, 0])
This counts how many times you could've cbet, didn't, and faced a bet.
and
cnt_f_probe_bet_raise_pot_def_opp_action_fold:
sum(if[flg_f_cbet_opp and substring(lookup_actions_f.action from 1 for 2) = 'XF', 1, 0])
This counts how many times you could've cbet, didn't, and check/folded.