raise flop cbet and barel turn in 3bet pot
Posted: Fri May 26, 2023 11:41 am
I think my stat is fine I am just not sure how to define opportunities column. I am missing how to define that flop raise is called and that player have opportunity to barel turn. Here is my first column :
sum(if[(cash_hand_player_statistics.flg_p_3bet_def_opp OR cash_hand_player_statistics.flg_p_4bet_def_opp) AND char_length(cash_hand_summary.str_aggressors_p) = 3 AND cash_hand_player_statistics.enum_f_cbet_action='R' AND cash_hand_player_statistics.flg_t_bet, 1, 0])
This is my second column but it is incomplete:
(cash_hand_player_statistics.flg_p_3bet_def_opp OR cash_hand_player_statistics.flg_p_4bet_def_opp) AND char_length(cash_hand_summary.str_aggressors_p) = 3 AND cash_hand_player_statistics.enum_f_cbet_action='R' AND lookup_actions_f.action='R'
This last one I put lookup action R is to make sure there was no reraise but I am not sure how to specify that opponent called and also that he did not donk turn ( in case he is out of position). Also I am not sure if I need cash_hand_player_statistics.flg_p_3bet_def_opp OR cash_hand_player_statistics.flg_p_4bet_def_opp maybe only str_aggressors_p = 3 is enough ?
sum(if[(cash_hand_player_statistics.flg_p_3bet_def_opp OR cash_hand_player_statistics.flg_p_4bet_def_opp) AND char_length(cash_hand_summary.str_aggressors_p) = 3 AND cash_hand_player_statistics.enum_f_cbet_action='R' AND cash_hand_player_statistics.flg_t_bet, 1, 0])
This is my second column but it is incomplete:
(cash_hand_player_statistics.flg_p_3bet_def_opp OR cash_hand_player_statistics.flg_p_4bet_def_opp) AND char_length(cash_hand_summary.str_aggressors_p) = 3 AND cash_hand_player_statistics.enum_f_cbet_action='R' AND lookup_actions_f.action='R'
This last one I put lookup action R is to make sure there was no reraise but I am not sure how to specify that opponent called and also that he did not donk turn ( in case he is out of position). Also I am not sure if I need cash_hand_player_statistics.flg_p_3bet_def_opp OR cash_hand_player_statistics.flg_p_4bet_def_opp maybe only str_aggressors_p = 3 is enough ?