Good morning,
I was trying to create a statistic for cash games with short stacks of "Fold to PF 3Bet NAI After Raise." It turns out I have a problem that distorts the statistic. I can indicate in the stat to consider hands where the effective stack > 14BB for example, but it still filters this type of hands that I don't want it to count. Here's an example:
- There are 3 players at the table, P1: 28BB, P2: 5BB, Hero: 18BB. --> HERO OR - P2 3BET 5BB
Can I somehow exclude this type of situations? Could I somehow limit the stack of the player who makes the 3Bet?
Thanks in advance.
cnt_p_3bet_NAI_def_action_fold_when_FR_3
sum(if[cash_hand_player_statistics.enum_p_3bet_action='F'
AND cash_hand_player_statistics.flg_p_open_opp
AND cash_hand_player_statistics.flg_p_first_raise
AND (cash_hand_player_statistics.amt_p_raise_made / cash_limit.amt_bb <= 3)
AND (cash_hand_player_statistics.amt_p_effective_stack / cash_limit.amt_bb >= 14 )
AND ((cash_hand_player_statistics.amt_p_3bet_facing / cash_limit.amt_bb) + (cash_hand_player_statistics.amt_p_raise_made / cash_limit.amt_bb)) <= ((cash_hand_player_statistics.amt_p_effective_stack / cash_limit.amt_bb) / 3), 1, 0])