I am trying to build a stat that shows how often someone raises an unraised pot on the button.
I know there is a RFI but it doesn't work if someone is raising after limp(s) and it does not work for each position. This is the best I can do, is it possible to get closer?
(Opp)
sum(if[tourney_holdem_hand_player_statistics.position = 0
AND tourney_holdem_hand_player_statistics.flg_p_3bet_opp = false
AND tourney_holdem_hand_player_statistics.flg_p_4bet_def_opp = false
AND tourney_holdem_hand_player_statistics.flg_p_first_raise, 1, 0])
The problem that I can think of is that the opportunity will not filter hands that were 3Bet or 5Bet+/Jams before us?
