Check Raise Flop in 3Bet Pot.

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Check Raise Flop in 3Bet Pot.

Postby acesjohn » Sun Aug 12, 2018 10:45 am

What am I missing?

sum(if[(cash_hand_player_statistics.flg_f_check_raise AND (cash_hand_player_statistics.flg_p_3bet or cash_hand_player_statistics.flg_p_3bet_def_opp), 1, 0])

I would like a stat that shows total check raise in a 3Bet+ pot. It is possible to be the one who 3bets due to the possibility of a cold call behind.

Or will I have to do a collective sum

Times we are the 3better + the times our opponent is the 3better?
acesjohn
 
Posts: 134
Joined: Mon Sep 08, 2008 6:21 pm

Re: Check Raise Flop in 3Bet Pot.

Postby Flag_Hippo » Sun Aug 12, 2018 2:40 pm

That could also include 4bet+ pots and it sounds like you do not want that so as I mentioned to you here you can use char_length(cash_hand_summary.str_aggressors_p) = 3 to specify that it's a 3bet pot and this will count flop check raises whether the player made the 3bet or called the 3bet:

Code: Select all
sum(if[cash_hand_player_statistics.flg_f_check_raise AND char_length(cash_hand_summary.str_aggressors_p) = 3, 1, 0])
Flag_Hippo
Moderator
 
Posts: 14441
Joined: Tue Jan 31, 2012 7:50 am

Re: Check Raise Flop in 3Bet Pot.

Postby acesjohn » Sun Aug 12, 2018 8:22 pm

Flag_Hippo wrote:That could also include 4bet+ pots and it sounds like you do not want that so as I mentioned to you here you can use char_length(cash_hand_summary.str_aggressors_p) = 3 to specify that it's a 3bet pot and this will count flop check raises whether the player made the 3bet or called the 3bet:

Code: Select all
sum(if[cash_hand_player_statistics.flg_f_check_raise AND char_length(cash_hand_summary.str_aggressors_p) = 3, 1, 0])


Sure, that is more clear now, thank you.

To clarify would that also work with:
"= 2" for a standard pot
"= 4" for a 4bet only pot
"=5" for a 5bet only pot (not that its relevant unless i'm playing deep)
acesjohn
 
Posts: 134
Joined: Mon Sep 08, 2008 6:21 pm

Re: Check Raise Flop in 3Bet Pot.

Postby Flag_Hippo » Mon Aug 13, 2018 5:34 am

Yes that's correct. The aggressors string records the positions of the aggressive actions in order (BB posted -> 2bet -> 3bet e.t.c) so the length of this correlates to whether the pot was limped, 2bet and so on - this post has more information on how the aggressor and actor strings work .
Flag_Hippo
Moderator
 
Posts: 14441
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 24 guests

cron