by Suboptimal88 » Mon Jan 19, 2015 7:47 am
Some more stats , sorry for double posting , just want to see if they are valid
First in raise success
sum(if[cash_hand_player_statistics.flg_p_first_raise and cash_hand_player_statistics.flg_won_hand and not(cash_hand_player_statistics.flg_f_saw) and not(cash_hand_player_statistics.flg_p_limp_def_opp) and not(cash_hand_player_statistics.flg_p_3bet_def_opp) and not(cash_hand_player_statistics.flg_p_4bet_def_opp), 1, 0])
All in success , im not sure about this one , it probably means any all in? how do we say first raise all in?
sum(if[cash_hand_player_statistics.flg_p_allin and cash_hand_player_statistics.flg_won_hand and not(cash_hand_player_statistics.flg_f_saw) and not(cash_hand_player_statistics.flg_p_limp_def_opp) and not(cash_hand_player_statistics.flg_p_3bet_def_opp) and not(cash_hand_player_statistics.flg_p_4bet_def_opp), 1, 0])
Fold to float bet at turn in a 3-bet pot , this one looks harder
sum(if[cash_hand_player_statistics.flg_p_3bet) AND not(cash_hand_player_statistics.flg_f_face_raise) AND lookup_actions_f.action LIKE '%R'
and cash_hand_player_statistics.flg_t_open_opp AND cash_hand_player_statistics.amt_t_bet_facing >
0 AND substring(lookup_actions_t.action from 1 for 2) = 'XF', 1, 0])