I made a statistic based on 'Check Raise Flop'
What is the percentage of times that the BB player makes XR flop in a bet in HU months, with 10 to 100b of effective stack and in a preflop minraise
player:
preflop C
flop XR
(cnt_f_check_raise_10more / cnt_f_check_raise_opp_10more) * 100
cnt_f_check_raise_10more
sum(if[(tourney_hand_player_statistics.val_p_raise_aggressor_pos=9 AND ((tourney_hand_player_statistics.amt_p_2bet_facing + tourney_hand_player_statistics.amt_blind) / tourney_blinds.amt_bb) BETWEEN 1.99 and 2.10) and tourney_hand_summary.cnt_players = 2 AND
tourney_hand_player_statistics.position=8 AND
(tourney_hand_player_statistics.val_f_bet_facing_pct <=40) AND
((tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 10 AND 100) AND
tourney_hand_player_statistics.flg_f_check_raise, 1, 0])
cnt_f_check_raise_opp_10more
sum(if[tourney_hand_summary.cnt_players = 2 AND
tourney_hand_player_statistics.position=8 AND
(tourney_hand_player_statistics.val_f_bet_facing_pct <=40) AND
((tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 10 AND 100) AND
(tourney_hand_player_statistics.val_p_raise_aggressor_pos=9 AND
((tourney_hand_player_statistics.amt_p_2bet_facing + tourney_hand_player_statistics.amt_blind) / tourney_blinds.amt_bb) BETWEEN 1.99 and 2.10) and tourney_hand_player_statistics.flg_f_check AND (tourney_hand_player_statistics.cnt_f_raise > 0 OR tourney_hand_player_statistics.cnt_f_call > 0 OR tourney_hand_player_statistics.flg_f_fold), 1, 0])
Please let me know if everything is correct.