This is "fold to push after 4bet"
sum(if[holdem_hand_player_statistics.flg_p_first_raise AND
holdem_hand_player_statistics.flg_p_4bet AND
holdem_hand_player_statistics.enum_face_allin='P' AND
holdem_hand_player_statistics.enum_face_allin_action='F', 1, 0])
_________________
sum(if[holdem_hand_player_statistics.flg_p_first_raise AND
holdem_hand_player_statistics.flg_p_4bet AND
holdem_hand_player_statistics.enum_face_allin='P', 1, 0])
NOW I want to make a "Fold to 5bet+ after 4bet", so the faced raise after the 4bet doesnt has to be an allin.
Is flg_4bet_def_opp also including 4bet+?
If yes I could make:
sum(if[holdem_hand_player_statistics.flg_p_first_raise AND
holdem_hand_player_statistics.flg_p_4bet AND
holdem_hand_player_statistics.flg_4bet_def_opp AND
holdem_hand_player_statistics.enum_p_4bet_action='F', 1, 0])
_________________
sum(if[holdem_hand_player_statistics.flg_p_first_raise AND
holdem_hand_player_statistics.flg_p_4bet AND
holdem_hand_player_statistics.flg_4bet_def_opp , 1, 0])
Did you understand what I want and what do you think about my solution?
Looks little bit paradox because of making a bet and facing a 4bet(+)...
