Hey experts!
I feel like my selfconstructed stat is not working like it should, can you please look over the things I did ?
Detailed Desciption:
Percentage of the time that a player called a preflop 3Bet, smaller than 40% of the effective stack, given that he had a chance to do so regardless of other prior actions.
Formula: Number of Times Player Called a non All-In 3Bet Preflop / Number of Times Player Could Call a non All-In 3Bet Preflop
Definition:
- Code: Select all
(cnt_p_nai3bet_def_action_call_COPY / cnt_p_nai3bet_def_opp_COPY) * 100
My columns are ...
cnt_p_nai3bet_def_action_call_COPY:
- Code: Select all
sum(if[tourney_hand_player_statistics.enum_p_3bet_action='C' AND tourney_hand_player_statistics.amt_p_raise_made >= tourney_hand_player_statistics.amt_p_effective_stack * .4, 1, 0])
cnt_p_nai3bet_def_opp_COPY:
- Code: Select all
sum(if[tourney_hand_player_statistics.flg_p_3bet_def_opp AND
tourney_hand_player_statistics.amt_p_raise_made >= tourney_hand_player_statistics.amt_p_effective_stack * .4, 1, 0])
It feels like it should be obvious, but I am not able to get it atm.
€: Might be because of the different "Database Fields" - t_h_p_statistics.flg_ and t_h_p_statistics.enum_ ?