I want to make a stat showing the % player folds on the flop to a raise but ONLY when he has made a bet. So it doesn't count if there is a bet then raise and then next player folds before acting at all.
Just to confirm, is this correct:
sum(if[cash_hand_player_statistics.flg_f_3bet_opp AND cash_hand_player_statistics.flg_f_bet AND cash_hand_player_statistics.flg_f_fold, 1, 0])
divided by
sum(if[cash_hand_player_statistics.flg_f_3bet_opp AND cash_hand_player_statistics.flg_f_bet, 1, 0])
There is already a built-in stat "Fold to F 2Bet" that would include these cases but as far as I can tell, it seems to also take into account the cases where a player has not yet afted on the flop but folds to a raise that someone made before him and I want to exclude such cases.
So obviously I'm looking for information about how easy it is to make a player fold specifically by raising his flop bet. The betting could go me check - villain bet - me raise -> villain folds. Or just villain bet - me raise -> villain fold. Both cases should be covered by this stat but I don't think I need to differentiate between them.