For the general stat Open Shoved Preflop, this works:
- Code: Select all
(cnt_p_os / cnt_p_open_opp ) * 100
cnt_p_os = sum(if[tourney_hand_player_statistics.flg_p_first_raise AND tourney_hand_player_statistics.flg_p_open_opp AND amt_p_raise_made>=amt_p_effective_stack, 1, 0])
cnt_p_open_opp = sum(if[tourney_hand_player_statistics.flg_p_open_opp, 1, 0])
Yet, when I try to do it for, for example, 12-15bb, it doesn't work:
- Code: Select all
(cnt_p_os_12_15bb / cnt_p_open_opp_12_15bb ) * 100
cnt_p_os_12_15bb = sum(if[tourney_hand_player_statistics.flg_p_first_raise AND tourney_hand_player_statistics.flg_p_open_opp AND amt_p_raise_made>=amt_p_effective_stack AND amt_p_effective_stack<15 AND amt_p_effective_stack>=12, 1, 0])
cnt_p_open_opp_12_15bb = sum(if[tourney_hand_player_statistics.flg_p_open_opp AND amt_p_effective_stack>=12 AND amt_p_effective_stack<15, 1, 0])
Any help is appreciated!