Let's see if it can go, or I have to study a lot more.Just an example, then I recreate them for good if the technique is right.
ColdCall vs EP (seat 5+6) table 9max:
cnt_p_coldcall_vs_EP_open
- Code: Select all
sum(if[tourney_hand_player_statistics.flg_p_ccall and not(tourney_hand_player_statistics.flg_p_limp) and (tourney_hand_player_statistics.flg_p_squeeze_opp is false) and tourney_hand_summary.cnt_players = 9 and char_length(tourney_hand_summary.str_aggressors_p) >= 2 and substring(tourney_hand_summary.str_aggressors_p from 2 for 1)::int BETWEEN 5 and 6 , 1, 0])
cnt_p_ccall_opp_vs_EP_open
- Code: Select all
sum(if[tourney_hand_player_statistics.flg_p_3bet_opp and (tourney_hand_player_statistics.flg_p_squeeze_opp is false) and not(tourney_hand_player_statistics.flg_p_limp) and tourney_hand_summary.cnt_players = 9 and char_length(tourney_hand_summary.str_aggressors_p) >= 2 and substring(tourney_hand_summary.str_aggressors_p from 2 for 1)::int BETWEEN 5 and 6, 1, 0])
Here for example, vs EP as before but the caller is HJ (seat 2)
cnt_p_coldcall_vs_EP_open_HJ
- Code: Select all
sum(if[tourney_hand_player_statistics.flg_p_ccall and not(tourney_hand_player_statistics.flg_p_limp) and (tourney_hand_player_statistics.flg_p_squeeze_opp is false) and tourney_hand_summary.cnt_players = 9 and char_length(tourney_hand_summary.str_aggressors_p) >= 2 and substring(tourney_hand_summary.str_aggressors_p from 2 for 1)::int BETWEEN 5 and 6 and (tourney_hand_player_statistics.position) =2, 1, 0])
cnt_p_ccall_opp_vs_EP_open_HJ
- Code: Select all
sum(if[tourney_hand_player_statistics.flg_p_3bet_opp and (tourney_hand_player_statistics.flg_p_squeeze_opp is false) and not(tourney_hand_player_statistics.flg_p_limp) and tourney_hand_summary.cnt_players = 9 and char_length(tourney_hand_summary.str_aggressors_p) >= 2 and substring(tourney_hand_summary.str_aggressors_p from 2 for 1)::int BETWEEN 5 and 6 and (tourney_hand_player_statistics.position) =2, 1, 0])
unfortunately I already know that I will have to study more