Yep, I missed half of it, for any one who's interested:
- Code: Select all
sum(if[tourney_hand_player_statistics.flg_p_3bet AND tourney_hand_player_statistics.amt_p_raise_made >= tourney_hand_player_statistics.amt_p_effective_stack * .5, 1, 0])
Need a little help coming up with the fold to 3 bet not all in stats, for the fold to 3 bet all in column, I've got:
- Code: Select all
sum(if[tourney_hand_player_statistics.flg_p_3bet AND tourney_hand_player_statistics.enum_p_3bet_action='F' AND tourney_hand_player_statistics.amt_p_raise_made >= tourney_hand_player_statistics.amt_p_effective_stack * .5, 1, 0])
and so on for different stack sizes, I having trouble conceptualizing is it as simple as:
- Code: Select all
sum(if[tourney_hand_player_statistics.flg_p_3bet AND tourney_hand_player_statistics.enum_p_3bet_action='F' AND tourney_hand_player_statistics.amt_p_raise_made < tourney_hand_player_statistics.amt_p_effective_stack * .5, 1, 0])
or would it best to subtract "3bet_ai" from the standard 3bet to get my non all in 3bet?