Again i am having troubles with stats by position, looK.
Cbet Flop Raise Pot: (cnt_f_cbet_rp / cnt_f_cbet_opp_rp) * 100
cnt_f_cbet_rp: sum(if[holdem_hand_player_statistics.flg_f_cbet
AND NOT((holdem_hand_player_statistics.flg_p_3bet_def_opp OR holdem_hand_player_statistics.flg_p_3bet)OR(holdem_hand_player_statistics.flg_p_4bet OR holdem_hand_player_statistics.flg_p_4bet_def_opp)), 1, 0])
cnt_f_cbet_opp_rp: sum(if[holdem_hand_player_statistics.flg_f_cbet_opp AND NOT((holdem_hand_player_statistics.flg_p_3bet_def_opp OR holdem_hand_player_statistics.flg_p_3bet)OR(holdem_hand_player_statistics.flg_p_4bet OR holdem_hand_player_statistics.flg_p_4bet_def_opp)), 1, 0])
The value of this in a player in my BD is : 382/555 x 100 = 69
I made the same stat for IP and OOP.
Cbet Flop Raise Pot IP: (cnt_f_cbet_ip / cnt_f_cbet_opp_ip) * 100
cnt_f_cbet_ip: sum(if[holdem_hand_player_detail.flg_f_has_position
AND holdem_hand_player_statistics.flg_f_cbet AND NOT((holdem_hand_player_statistics.flg_p_3bet_def_opp OR holdem_hand_player_statistics.flg_p_3bet)OR(holdem_hand_player_statistics.flg_p_4bet OR holdem_hand_player_statistics.flg_p_4bet_def_opp)), 1, 0])
cnt_f_cbet_opp_ip: sum(if[holdem_hand_player_detail.flg_f_has_position AND holdem_hand_player_statistics.flg_f_cbet_opp AND NOT((holdem_hand_player_statistics.flg_p_3bet_def_opp OR holdem_hand_player_statistics.flg_p_3bet)OR(holdem_hand_player_statistics.flg_p_4bet OR holdem_hand_player_statistics.flg_p_4bet_def_opp)), 1, 0])
The value of this in the same player that before is: 382/294 = 130
I had tryed a lot ot things and nothing. I think that cnt_f_cbet_opp_ip is okey. If i sum cnt_f_cbet_opp_ip and cnt_f_cbet_opp_oop i get cnt_f_cbet_opp_rp I dont know what is the problem with cnt_f_cbet_ip and cnt_f_cbet_oop, they count all the cbets made in flop, whats the problem here?
I am getting troubles with all this type of stats, i dont know where is my mistake.