Hi!
I'm trying to make two stats:
ROL IP stat to 4bb+. So far I got this:
sum(if[cash_hand_player_statistics.flg_p_first_raise AND NOT cash_hand_player_statistics.flg_p_open_opp AND cash_hand_player_statistics.position between 0 and 6 and cash_hand_player_statistics.amt_p_raise_made / cash_limit.amt_bb > 4,1,0])
ROL OOP to 4.1bb+. So far I got this:
sum(if[cash_hand_player_statistics.flg_p_first_raise AND NOT cash_hand_player_statistics.flg_p_open_opp AND cash_hand_player_statistics.position between 8 and 9 and cash_hand_player_statistics.amt_p_raise_made / cash_limit.amt_bb > 4.1,1,0])
I'm missing the IP/OOP part. I know I should be using str_aggressors_p, but never know how to use it properly.