i would like to make a stat which tells the 3bet percentages vs the preflop raisers postion
how often will a villain 3bet a sb opener a button opener and a CO opener ect.
is that possible
Moderator: Moderators
name: cnt_p_3bet_vs_MP3_opp
sum(if[ holdem_hand_player_statistics.flg_p_3bet_opp AND
(holdem_hand_player_detail.val_p_raise_aggressor_pos = 2) AND
(holdem_hand_player_statistics.flg_p_3bet = 'TRUE') AND NOT
holdem_hand_player_statistics.flg_p_4bet, 1, 0])
name: cnt_p_3bet_vs_MP3_opp
sum(if[ holdem_hand_player_statistics.flg_p_3bet_opp AND
(holdem_hand_player_detail.val_p_raise_aggressor_pos = 2) AND NOT
holdem_hand_player_statistics.flg_p_4bet, 1, 0])
-------------------
name: cnt_p_3bet_vs_CO
sum(if[ holdem_hand_player_statistics.flg_p_3bet_opp AND
(holdem_hand_player_detail.val_p_raise_aggressor_pos = 1) AND
(holdem_hand_player_statistics.flg_p_3bet = 'TRUE') AND NOT
holdem_hand_player_statistics.flg_p_4bet, 1, 0])
name: cnt_p_3bet_vs_CO_opp
sum(if[ holdem_hand_player_statistics.flg_p_3bet_opp AND
(holdem_hand_player_detail.val_p_raise_aggressor_pos = 1) AND NOT
holdem_hand_player_statistics.flg_p_4bet, 1, 0])
-----------
name: cnt_p_3bet_vs_BTN
sum(if[ holdem_hand_player_statistics.flg_p_3bet_opp AND
(holdem_hand_player_detail.val_p_raise_aggressor_pos = 0) AND
(holdem_hand_player_statistics.flg_p_3bet = 'TRUE') AND NOT
holdem_hand_player_statistics.flg_p_4bet, 1, 0])
name: cnt_p_3bet_vs_BTN_opp
sum(if[ holdem_hand_player_statistics.flg_p_3bet_opp AND
(holdem_hand_player_detail.val_p_raise_aggressor_pos = 0) AND NOT
holdem_hand_player_statistics.flg_p_4bet, 1, 0])
----------
name: cnt_p_3bet_vs_SB_opp
sum(if[ holdem_hand_player_statistics.flg_p_3bet_opp AND
(holdem_hand_player_detail.val_p_raise_aggressor_pos = 9) AND
(holdem_hand_player_statistics.flg_p_3bet = 'TRUE') AND NOT
holdem_hand_player_statistics.flg_p_4bet, 1, 0])
name: cnt_p_3bet_vs_SB_opp
sum(if[ holdem_hand_player_statistics.flg_p_3bet_opp AND
(holdem_hand_player_detail.val_p_raise_aggressor_pos = 9) AND NOT
holdem_hand_player_statistics.flg_p_4bet, 1, 0])Return to Custom Stats, Reports, and SQL [Read Only]
Users browsing this forum: No registered users and 1 guest