- 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.