Hi guys im trying to build custom that show a BvB situation when BB fold to an open raise Allin from SB and same stat with non allin i try this but it doesnt work:
Here is my custom stat for No allin
( LDB_cnt_p_bb_v_sb_fold_NAI_global / (LDB_cnt_p_bb_v_sb_fold_NAI_global+LDB_cnt_p_bb_v_sb_call_NAI_global+LDB_cnt_p_bb_v_sb_3bet_NAI_global) ) * 100
LDB_cnt_p_bb_v_sb_fold_NAI_global:
sum
(if[tourney_hand_player_statistics.position=8
AND tourney_hand_player_statistics.flg_blind_def_opp AND lookup_actions_p.action='F'
AND tourney_hand_player_statistics.val_p_raise_aggressor_pos=9
AND tourney_hand_player_statistics.amt_p_raise_facing < tourney_hand_player_statistics.amt_p_effective_stack , 1, 0])
LDB_cnt_p_bb_v_sb_call_NAI_global:
sum
(if[tourney_hand_player_statistics.position=8
AND tourney_hand_player_statistics.flg_blind_def_opp
AND lookup_actions_p.action='C'
AND tourney_hand_player_statistics.val_p_raise_aggressor_pos=9
AND tourney_hand_player_statistics.amt_p_raise_facing < tourney_hand_player_statistics.amt_p_effective_stack , 1, 0])
LDB_cnt_p_bb_v_sb_3bet_NAI_global:
sum
(if[tourney_hand_player_statistics.position=8
AND tourney_hand_player_statistics.flg_blind_def_opp
AND lookup_actions_p.action LIKE 'R%'
AND tourney_hand_player_statistics.val_p_raise_aggressor_pos=9
AND tourney_hand_player_statistics.amt_p_raise_facing < tourney_hand_player_statistics.amt_p_effective_stack , 1, 0])
Can you help me with this please?
And i try this for allin situation but same result it doenst work
Thanks a lot
