Column to count pre flop raises heads up?
![Post Post](https://www.pokertracker.com/phpBB3-forums/styles/prosilver-embed/imageset/icon_post_target.gif)
Is the following definition to count the preflop raises between [2 and 3[ bb at effective stacks > 16 correct for heads up tables?
Does it count raises from the SB only?
Or should I use cnt_p_raise instead?
Thanks.
Does it count raises from the SB only?
Or should I use cnt_p_raise instead?
- Code: Select all
sum(if[tourney_hand_player_statistics.flg_steal_att and tourney_hand_player_statistics.amt_p_raise_made >= 2 * tourney_blinds.amt_bb and tourney_hand_player_statistics.amt_p_raise_made < 3 * tourney_blinds.amt_bb and tourney_hand_player_statistics.amt_p_raise_made < tourney_hand_player_statistics.amt_p_effective_stack and (tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) > 16, 1, 0])
Thanks.