Page 1 of 1

BB 3BET vs BTN steal

PostPosted: Wed Oct 13, 2021 1:06 pm
by lautben
Hello, i have this custom stat for 3bet BB vs CO and would like to change it to 3bet BB vs BTN:

Code: Select all
sum(if[(NOT cash_hand_player_statistics.flg_p_squeeze_opp) AND cash_hand_player_statistics.flg_p_3bet AND cash_hand_player_statistics.position = 8 AND cash_hand_summary.str_aggressors_p LIKE '81%' AND cash_hand_summary.str_actors_p LIKE '1%', 1, 0])


What should I modify in order to achieve my goal?

I realise that if i wanted the same stat but for SB instead of BB I can change that 8 for a 9 and would do it, but don't know how to change from CO to BTN.

Re: BB 3BET vs BTN steal

PostPosted: Wed Oct 13, 2021 1:44 pm
by lautben
I think modifying it this way should work, can you confirm?

Code: Select all
sum(if[(NOT cash_hand_player_statistics.flg_p_squeeze_opp) AND cash_hand_player_statistics.flg_p_3bet AND cash_hand_player_statistics.position = 8 AND cash_hand_summary.str_aggressors_p LIKE '80%' AND cash_hand_summary.str_actors_p LIKE '0%', 1, 0])

Re: BB 3BET vs BTN steal

PostPosted: Thu Oct 14, 2021 5:39 am
by Flag_Hippo
That's correct.

highfalutin