Page 1 of 1

fold 3bet

PostPosted: Thu Mar 25, 2021 10:54 am
by plukhead
hola necesito ayuda para modificar la stat fold 3bet (SB VS BB)para que solo contemple el fold ante 3bet < 1/3 del stack efectivo .gracias


(cnt_p_3bet_def_action_fold_SB_BB_tot / cnt_p_3bet_def_opp_when_open_raised_SB_BB_tot) * 100


sum(if[tourney_hand_player_statistics.position = 9
AND tourney_hand_summary.str_actors_p NOT LIKE '0%'
AND tourney_hand_player_statistics.enum_p_3bet_action='F'
AND tourney_hand_player_statistics.flg_p_first_raise , 1, 0])

sum(if[tourney_hand_player_statistics.position = 9
AND tourney_hand_summary.str_actors_p NOT LIKE '0%'
AND tourney_hand_player_statistics.flg_p_3bet_def_opp
AND tourney_hand_player_statistics.flg_p_first_raise , 1, 0])

Re: fold 3bet

PostPosted: Fri Mar 26, 2021 7:46 am
by Flag_Hippo
Add the size of the players 2Bet to the size of the 3Bet faced (the amount needed to call) and compare that to the players effective stack (divided by 3):

Code: Select all
AND (tourney_hand_player_statistics.amt_p_raise_made + tourney_hand_player_statistics.amt_p_3bet_facing) < (tourney_hand_player_statistics.amt_p_effective_stack / 3)

highfalutin