Custom Stat: Raise a F Float Bet in 3Bet+ Pot
Posted: Tue Jul 26, 2016 5:38 pm
Hello!
Please check my logic. I want to create stat Raise a F Float Bet in 3Bet+ Pot.
Percentage of the time that a player raised a float bet when he was the aggressor and had 3bet or more preflop given that the player checked the flop out of position and faced the float bet.
Formula: Number of Times Player Raised a Float Bet on the Flop in a 3Bet or Higher Pot / Number of Times Player Could Raise a Float Bet on the Flop in a 3Bet or Higher Pot
(cnt_f_float_def_opp_action_raise_3bet_pot / cnt_f_float_def_opp_3bet_pot) * 100
cnt_f_float_def_opp_action_raise_3bet_pot
Number of times a player checked and raised when facing a bet while out of position on the flop after making a preflop 3bet or higher and being the preflop aggressor.
sum(if[(cash_hand_player_statistics.flg_p_3bet OR cash_hand_player_statistics.flg_p_4bet) AND lookup_actions_p.action LIKE '%R' AND cash_hand_player_statistics.flg_f_open_opp AND cash_hand_player_statistics.amt_f_bet_facing > 0 AND substring(lookup_actions_f.action from 1 for 2) = 'XR', 1, 0])
cnt_f_float_def_opp_3bet_pot
Number of times a player checked and faced a bet when out of position on the flop after making a preflop 3bet or higher and being the preflop aggressor.
sum(if[(cash_hand_player_statistics.flg_p_3bet OR cash_hand_player_statistics.flg_p_4bet) AND lookup_actions_p.action LIKE '%R' AND cash_hand_player_statistics.flg_f_open_opp AND cash_hand_player_statistics.flg_f_check AND cash_hand_player_statistics.amt_f_bet_facing > 0, 1, 0])
Is this expression correct substring(lookup_actions_f.action from 1 for 2) = 'XR' and will it count all cases despite which actions follow player's raise? Or would it be better to use expression lookup_actions_f.action LIKE 'XR%'. Are these expression equal to each other?
Please check my logic. I want to create stat Raise a F Float Bet in 3Bet+ Pot.
Percentage of the time that a player raised a float bet when he was the aggressor and had 3bet or more preflop given that the player checked the flop out of position and faced the float bet.
Formula: Number of Times Player Raised a Float Bet on the Flop in a 3Bet or Higher Pot / Number of Times Player Could Raise a Float Bet on the Flop in a 3Bet or Higher Pot
(cnt_f_float_def_opp_action_raise_3bet_pot / cnt_f_float_def_opp_3bet_pot) * 100
cnt_f_float_def_opp_action_raise_3bet_pot
Number of times a player checked and raised when facing a bet while out of position on the flop after making a preflop 3bet or higher and being the preflop aggressor.
sum(if[(cash_hand_player_statistics.flg_p_3bet OR cash_hand_player_statistics.flg_p_4bet) AND lookup_actions_p.action LIKE '%R' AND cash_hand_player_statistics.flg_f_open_opp AND cash_hand_player_statistics.amt_f_bet_facing > 0 AND substring(lookup_actions_f.action from 1 for 2) = 'XR', 1, 0])
cnt_f_float_def_opp_3bet_pot
Number of times a player checked and faced a bet when out of position on the flop after making a preflop 3bet or higher and being the preflop aggressor.
sum(if[(cash_hand_player_statistics.flg_p_3bet OR cash_hand_player_statistics.flg_p_4bet) AND lookup_actions_p.action LIKE '%R' AND cash_hand_player_statistics.flg_f_open_opp AND cash_hand_player_statistics.flg_f_check AND cash_hand_player_statistics.amt_f_bet_facing > 0, 1, 0])
Is this expression correct substring(lookup_actions_f.action from 1 for 2) = 'XR' and will it count all cases despite which actions follow player's raise? Or would it be better to use expression lookup_actions_f.action LIKE 'XR%'. Are these expression equal to each other?