Page 1 of 1

fold river cbet limped pot

PostPosted: Fri Apr 16, 2021 12:52 pm
by plukhead
hola necesito ayuda para hacer una stats para spin and go ,la stats seria % de veces que en 3h, BB foldea a una bet de BU en river luego de haber pagado la apuesta de BU en flop y turn en un pozo limpeado ,SB fold preflop...........la stats la escribi de la siguiente manera

(cnt_r_cbet_def_action_fold_BBvsBU_LP / cnt_r_cbet_def_opp_BBvsBU_LP) * 100

cnt_r_cbet_def_action_fold_BBvsBU_LP

sum(if[tourney_hand_player_statistics.position=8
AND tourney_hand_summary.str_actors_p = '0'
AND tourney_hand_player_statistics.cnt_p_face_limpers > 0
AND NOT(tourney_hand_player_statistics.flg_p_first_raise)
AND lookup_actions_f.action = 'C'
AND lookup_actions_t.action = 'C'
AND lookup_actions_r.action = 'F', 1, 0])



cnt_r_cbet_def_opp_BBvsBU_LP

sum(if[tourney_hand_player_statistics.position=8
AND tourney_hand_summary.str_actors_p = '0'
AND tourney_hand_player_statistics.cnt_p_face_limpers > 0
AND NOT(tourney_hand_player_statistics.flg_p_first_raise)
AND lookup_actions_f.action = 'C'
AND lookup_actions_t.action = 'C'
AND tourney_hand_player_statistics.amt_r_bet_facing > 0, 1, 0])


no necesito aclarar que hay 3 jugadores ya que este hud esta configurado solo para ser visible en 3H

Re: fold river cbet limped pot

PostPosted: Sat Apr 17, 2021 6:10 am
by Flag_Hippo
plukhead wrote:AND NOT(tourney_hand_player_statistics.flg_p_first_raise)

This isn't required since you have already specified that the BTN was the only player to VPIP.
plukhead wrote:AND lookup_actions_f.action = 'C'
AND lookup_actions_t.action = 'C'
AND lookup_actions_r.action = 'F'

The BB is out of position so their flop, turn and river actions will be 'XC', 'XC' & 'XF'.