I'm looking to make a stat that follows the following description: The amount of times player 3-bet from blinds vs button or cutoff
over the amount of times player had the opportunity to 3-bet from blinds vs button or cutoff.
This is the "Raise vs Steal Att" stat and I chose this as a basis from which to work from
((cnt_sb_steal_raise + cnt_bb_steal_raise) / (cnt_steal_def_opp_bb + cnt_steal_def_opp_sb)) * 100
I realize that I'm just looking to tweak the traditional definition of "steal" by excluding the "SB" part.
-Am I right in thinking that I only have to modify the columns regarding the big blinds given the description I'm aiming to achieve?
and finally, is there a way to say the following... (face sb steal attempt)=false
that way I can just plug it into the boolean.
Thanks