Hi Flag_Hippo and everybody feel free to comment this:
I think I got it, but could you please verify/validate my solution:
I want to build these stats:
3Bet IP x2 = 2.00-2.25
3Bet IP x2,5= 2.25-2.75
3Bet IP x3 = 2.75-3.25
3Bet IP x3,5= 3.25-3.75
...
Stat"3Bet IP x2"
((3bet_ip_2 - 3bet_ip_225) / 3bet_ip_denum) * 100The three
columns:
3bet_ip_2sum(if[cash_hand_player_statistics.flg_p_3bet AND
cash_hand_player_statistics.position < cash_hand_player_statistics.val_p_raise_aggressor_pos AND
cash_hand_player_statistics.amt_p_raise_made >= 2*(cash_hand_player_statistics.amt_p_2bet_facing + cash_hand_player_statistics.amt_blind), 1, 0])
3bet_ip_225sum(if[cash_hand_player_statistics.flg_p_3bet AND
cash_hand_player_statistics.position < cash_hand_player_statistics.val_p_raise_aggressor_pos AND
cash_hand_player_statistics.amt_p_raise_made >= 2.25*(cash_hand_player_statistics.amt_p_2bet_facing + cash_hand_player_statistics.amt_blind), 1, 0])
3bet_ip_denumsum(if[cash_hand_player_statistics.flg_p_3bet_opp AND
cash_hand_player_statistics.position < cash_hand_player_statistics.val_p_raise_aggressor_pos, 1, 0])
1. What do you think? Will this be useful/accurate/correct?! I know I don't define "correct", but maybe you see some error?
This exlained point no. 2: https://www.pokertracker.com/forums/vie ... 18&t=23047
2. Where can I see the definition of "cash_hand_player_statistics.val_p_raise_aggressor_pos"? If I 3bet in BU position will this be TRUE => cash_hand_player_statistics.position = cash_hand_player_statistics.val_p_raise_aggressor_pos, so 0 = 0 ? If yes, how do I get the position of the 2bet guy?