Hello,
I'm creating a statistic for the percentage of times a player folds on River, under the following conditions:
effective stack: 10bb+
player position: HUBB
preflop: C in raise2bb
flop: X and C in cbet up to 1.6bb
turn: X
river: Fold to bet up to 9.6bb
Fold to R BXB 10+ MRP = (cnt_r_BXB_def_action_fold_10more_MRP / cnt_r_BXB_def_opp_10more_MRP) * 100
cnt_r_BXB_def_action_fold_10more_MRP
sum(if[tourney_hand_summary.cnt_players = 2 AND (tourney_hand_player_statistics.val_f_bet_facing_pct <=30) AND tourney_hand_player_statistics.enum_f_cbet_action='C' and tourney_hand_player_statistics.position=8 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 lookup_actions_t.action = 'X' AND (tourney_hand_player_statistics.val_r_bet_facing_pct <=43) AND tourney_hand_player_statistics.amt_r_bet_facing > 0 AND (lookup_actions_r.action SIMILAR TO '(F|XF)%'), 1, 0])
cnt_r_BXB_def_opp_10mais_MRP
sum(if[tourney_hand_summary.cnt_players = 2 AND (tourney_hand_player_statistics.val_r_bet_facing_pct <=43) AND tourney_hand_player_statistics.position=8 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.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 10 AND 100) AND (tourney_hand_player_statistics.val_f_bet_facing_pct <=30) AND lookup_actions_p.action = 'C' AND lookup_actions_f.action = 'C' AND lookup_actions_t.action = 'X' AND tourney_hand_player_statistics.amt_r_bet_facing > 0 AND (lookup_actions_r.action SIMILAR TO '(F|XF)%'), 1, 0])
Could you please evaluate this statistic I created?