Page 1 of 1

Column to count pre flop raises heads up?

PostPosted: Sat Jul 14, 2012 6:16 pm
by erdnase17
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?

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.

Re: Column to count pre flop raises heads up?

PostPosted: Sun Jul 15, 2012 10:34 am
by kraada
That looks like it should work to me. It will only count raises from the SB since you can't attempt to steal in the BB.