by Gster » Wed Apr 27, 2011 11:02 pm
Ok, thanks!
I trimmed the needless parts of the expression and made 2 other similar statistics using the same concepts,
I'm going to post all 3 below, please let me know if I did it right and if they match their respective descriptions.
1) Fold Post-flop to bet
Description: The amount of times the player has folded post-flop to a bet over the amount of times the player has had the opportunity to fold post-flop to a bet.
Expression: ( cnt_postf_fold_face_bet / cnt_postf_face_bet_opp )
cnt_postf_fold_face_bet
sum(if[ (lookup_actions_f.action SIMILAR TO ('F|XF') AND holdem_hand_player_detail.amt_f_bet_facing > 0) OR
(lookup_actions_t.action SIMILAR TO ('F|XF') AND holdem_hand_player_detail.amt_t_bet_facing > 0) OR
(lookup_actions_r.action SIMILAR TO ('F|XF') AND holdem_hand_player_detail.amt_r_bet_facing > 0), 1, 0])
cnt_postf_face_bet_opp
sum(if[ (holdem_hand_player_detail.amt_f_bet_facing > 0) OR
(holdem_hand_player_detail.amt_t_bet_facing > 0) OR
(holdem_hand_player_detail.amt_r_bet_facing > 0), 1, 0])
2) Call Post-flop to bet
Description: The amount of times the player has called a bet post-flop over the amount of times the player has had the opportunity to call a bet post-flop.
Expression: ( cnt_postf_call_face_bet / cnt_postf_face_bet_opp )
cnt_postf_call_face_bet
sum(if[ (lookup_actions_f.action SIMILAR TO ('C|XC') AND holdem_hand_player_detail.amt_f_bet_facing > 0) OR
(lookup_actions_t.action SIMILAR TO ('C|XC') AND holdem_hand_player_detail.amt_t_bet_facing > 0) OR
(lookup_actions_r.action SIMILAR TO ('C|XC') AND holdem_hand_player_detail.amt_r_bet_facing > 0), 1, 0])
cnt_postf_face_bet_opp
sum(if[ (holdem_hand_player_detail.amt_f_bet_facing > 0) OR
(holdem_hand_player_detail.amt_t_bet_facing > 0) OR
(holdem_hand_player_detail.amt_r_bet_facing > 0), 1, 0])
3) Raise Post-flop to bet
Description: The amount of times the player has raised a bet post-flop over the amount of times the player has had the opportunity to raise a bet post-flop.
Expression: ( cnt_postf_raise_face_bet / cnt_postf_face_bet_opp )
cnt_postf_raise_face_bet
sum(if[ (lookup_actions_f.action SIMILAR TO ('R|XR') AND holdem_hand_player_detail.amt_f_bet_facing > 0) OR
(lookup_actions_t.action SIMILAR TO ('R|XR') AND holdem_hand_player_detail.amt_t_bet_facing > 0) OR
(lookup_actions_r.action SIMILAR TO ('R|XR') AND holdem_hand_player_detail.amt_r_bet_facing > 0), 1, 0])
cnt_postf_face_bet_opp
sum(if[ (holdem_hand_player_detail.amt_f_bet_facing > 0) OR
(holdem_hand_player_detail.amt_t_bet_facing > 0) OR
(holdem_hand_player_detail.amt_r_bet_facing > 0), 1, 0])