Steve.Dub wrote:When action doesn't include a call, use only the total amount wagered. Condition NOT LIKE '%C%'.
When action is bet/call, the amount bet or raised is tourney_hand_player_statistics.amt_bet_f - tourney_hand_player_statistics.amt_f_2bet_facing. Condition = 'BC'.
When action is raise/call, the amount bet or raised is tourney_hand_player_statistics.amt_bet_f - tourney_hand_player_statistics.amt_f_3bet_facing. Condition = 'RC'.
That's fine if you are playing heads up games or specify that the pot was heads up on the flop however if you want to include multiway pots your statistic is going to get alot more complex. For example if the action is 'BC' in a multiway pot then the call could have been versus a 3Bet+.
Steve.Dub wrote:There isn't a flop 5 bet flag so RRC doesn't exist.
flg_p_4bet includes any raise that's 4bet or higher so while there isn't a specific 5bet flag 'RRC' is still possible as a flop action which your currently not counting.
Steve.Dub wrote:For both of these columns, each individual if clause is validated by PT4, all three together are not valid. Missing some syntax there.
Each of those needs to go into their own individual column so instead of the two you posted you would have a total of 6 columns and you would then add them together in the value expression for your stat:
(A + B + C + D + E + F) / cnt_f_saw
Steve.Dub wrote:From these two columns, take the lower value and that's the sum of effective bets & raises.
I don't know exactly what you mean here but the value you need will be the sum of all the columns added together as above.
Steve.Dub wrote:That number divided by cnt_f_saw gives the average of sum of flop bets & raises.
You might want to use a custom column that excludes preflop all-ins that went to a flop and also consider whether you want your average to be calculated from all other flops seen (including hands where no aggressive action was taken) or only from hands where an aggressive action was taken.