Verification of C-Bet Stats for Limped and Raised Pots

Discuss how to create custom stats, reports and HUD profiles and share your creations.

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Verification of C-Bet Stats for Limped and Raised Pots

Postby TIGANCIC » Wed Mar 12, 2025 5:17 pm

Hi,
I want to verify if my c-bet statistics for limped and raised pots are correct.
C-Bets in Limped Pots
I used standard PokerTracker 4 columns as a base:
Flop:
cnt_f_bet_limp_pot
Code: Select all
sum(if[tourney_hand_player_statistics.flg_f_bet and
NOT(tourney_hand_player_statistics.flg_p_face_raise) and
tourney_hand_player_statistics.cnt_p_raise = 0, 1, 0])

cnt_f_open_opp_limp_pot
Code: Select all
sum(if[tourney_hand_player_statistics.flg_f_open_opp and
NOT(tourney_hand_player_statistics.flg_p_face_raise) and
tourney_hand_player_statistics.cnt_p_raise = 0, 1, 0])

Turn (based on flop stats):
cnt_t_bet_limp_pot
Code: Select all
sum(if[tourney_hand_player_statistics.flg_f_bet and
tourney_hand_player_statistics.flg_t_bet and
NOT(tourney_hand_player_statistics.flg_p_face_raise) and 
NOT(tourney_hand_player_statistics.flg_f_face_raise) and
tourney_hand_player_statistics.cnt_p_raise = 0, 1, 0])

cnt_t_open_opp_limp_pot
Code: Select all
sum(if[tourney_hand_player_statistics.flg_f_bet and
tourney_hand_player_statistics.flg_t_open_opp and
NOT(tourney_hand_player_statistics.flg_p_face_raise) and 
NOT(tourney_hand_player_statistics.flg_f_face_raise) and
tourney_hand_player_statistics.cnt_p_raise = 0, 1, 0])

River (based on flop stats):
cnt_r_bet_limp_pot
Code: Select all
sum(if[tourney_hand_player_statistics.flg_f_bet and
tourney_hand_player_statistics.flg_t_bet and
tourney_hand_player_statistics.flg_r_bet and
NOT(tourney_hand_player_statistics.flg_p_face_raise) and 
NOT(tourney_hand_player_statistics.flg_f_face_raise) and
NOT(tourney_hand_player_statistics.flg_t_face_raise) and 
tourney_hand_player_statistics.cnt_p_raise = 0, 1, 0])

cnt_r_open_opp_limp_pot
Code: Select all
sum(if[tourney_hand_player_statistics.flg_f_bet and
tourney_hand_player_statistics.flg_t_bet and
tourney_hand_player_statistics.flg_r_open_opp and
NOT(tourney_hand_player_statistics.flg_p_face_raise) and 
NOT(tourney_hand_player_statistics.flg_f_face_raise) and
NOT(tourney_hand_player_statistics.flg_t_face_raise) and 
tourney_hand_player_statistics.cnt_p_raise = 0, 1, 0])


C-Bets in Raised Pots
I adapted the above logic for raised pots:
Flop:
cnt_f_bet_raise_pot
Code: Select all
sum(if[tourney_hand_player_statistics.flg_f_bet and
NOT(tourney_hand_player_statistics.flg_p_face_raise) and
tourney_hand_player_statistics.cnt_p_raise = 1, 1, 0])

cnt_f_open_opp_raise_pot
Code: Select all
sum(if[tourney_hand_player_statistics.flg_f_open_opp and
NOT(tourney_hand_player_statistics.flg_p_face_raise) and
tourney_hand_player_statistics.cnt_p_raise = 1, 1, 0])

Turn:
cnt_t_bet_raise_pot
Code: Select all
sum(if[tourney_hand_player_statistics.flg_f_bet and
tourney_hand_player_statistics.flg_t_bet and
NOT(tourney_hand_player_statistics.flg_p_face_raise) and 
NOT(tourney_hand_player_statistics.flg_f_face_raise) and
tourney_hand_player_statistics.cnt_p_raise = 1, 1, 0])

cnt_t_open_opp_raise_pot
Code: Select all
sum(if[tourney_hand_player_statistics.flg_f_bet and
tourney_hand_player_statistics.flg_t_open_opp and
NOT(tourney_hand_player_statistics.flg_p_face_raise) and 
NOT(tourney_hand_player_statistics.flg_f_face_raise) and
tourney_hand_player_statistics.cnt_p_raise = 1, 1, 0])

River:
cnt_r_bet_raise_pot
Code: Select all
sum(if[tourney_hand_player_statistics.flg_f_bet and
tourney_hand_player_statistics.flg_t_bet and
tourney_hand_player_statistics.flg_r_bet and
NOT(tourney_hand_player_statistics.flg_p_face_raise) and 
NOT(tourney_hand_player_statistics.flg_f_face_raise) and
NOT(tourney_hand_player_statistics.flg_t_face_raise) and 
tourney_hand_player_statistics.cnt_p_raise = 1, 1, 0])

cnt_r_open_opp_raise_pot
Code: Select all
sum(if[tourney_hand_player_statistics.flg_f_bet and
tourney_hand_player_statistics.flg_t_bet and
tourney_hand_player_statistics.flg_r_open_opp and
NOT(tourney_hand_player_statistics.flg_p_face_raise) and 
NOT(tourney_hand_player_statistics.flg_f_face_raise) and
NOT(tourney_hand_player_statistics.flg_t_face_raise) and 
tourney_hand_player_statistics.cnt_p_raise = 1, 1, 0])

Are these formulas correct for calculating c-bet frequencies in limped and raised pots?
Did I miss any important conditions?

Thanks for your help!
TIGANCIC
 
Posts: 58
Joined: Fri Dec 20, 2024 8:00 am

Re: Verification of C-Bet Stats for Limped and Raised Pots

Postby Flag_Hippo » Fri Mar 14, 2025 11:06 am

That looks fine assuming you only want single raised pots for the raised pot columns.
Flag_Hippo
Moderator
 
Posts: 15784
Joined: Tue Jan 31, 2012 7:50 am


Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 56 guests

cron
highfalutin