3bet by position vs position
Posted: Sat Mar 24, 2012 11:28 pm
Hello. I'm trying to make a stat which is showing the Villain's 3bet at BU vs CO, when CO raises first in (none opens before, so it's actually a steal)
cnt_p_3bet_BUvsCO
cnt_p_3bet_opp_BUvsCO
Is it gonna work? I'm asking cuz found the old thread on PT3 forums and it was said, this is not gonna work due to PT3 database sctructure. If it works, so I can do it for every position, right?
Does detail.val_p_raise_aggressor_pos work properly? Want to make 3bets IP/OOP vs every position open raise (couldn't find this one in defaults)
Regards.
- Code: Select all
(cnt_p_3bet_BUvsCO / cnt_p_3bet_opp_BUvsCO) * 100
cnt_p_3bet_BUvsCO
- Code: Select all
sum(if[cash_hand_player_statistics.flg_p_3bet AND
cash_hand_player_statistics.position = 0 AND
cash_hand_player_statistics.cnt_p_face_limpers = 0 AND
cash_hand_player_detail.val_p_raise_aggressor_pos = 1, 1, 0])
cnt_p_3bet_opp_BUvsCO
- Code: Select all
sum(if[cash_hand_player_statistics.flg_p_3bet_opp AND
cash_hand_player_statistics.position = 0 AND
cash_hand_player_statistics.cnt_p_face_limpers = 0 AND
cash_hand_player_detail.val_p_raise_aggressor_pos = 1, 1, 0])
Is it gonna work? I'm asking cuz found the old thread on PT3 forums and it was said, this is not gonna work due to PT3 database sctructure. If it works, so I can do it for every position, right?
Does detail.val_p_raise_aggressor_pos work properly? Want to make 3bets IP/OOP vs every position open raise (couldn't find this one in defaults)
Regards.