Hi guys,
Trying to make an open shove stat with various stack sizes. eg. Player open shoves 0-10BBs with this %.
I would like to make a generic stat position wise, so that I can just change the positions in the 'item properties'.
Have this for just open shove...
cnt_p_open_shove
sum(if[tourney_hand_player_statistics.amt_p_raise_made >= tourney_hand_player_statistics.amt_p_effective_stack and tourney_hand_player_statistics.flg_p_first_raise and tourney_hand_player_statistics.flg_p_open_opp, 1, 0])
cnt_p_open_opp
sum(if[tourney_hand_player_statistics.flg_p_open_opp, 1, 0])
Both seem to work absolutely fine. Now what I want to do is add stack sizes please guys, to give me 'player open shoves 0-10BB' %' Or 'Player open shoves > 20 BBs %'
Thanks very much in advance as always
