CO fold vs BU 3 bet

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

CO fold vs BU 3 bet

Postby d5t6y7 » Tue May 30, 2017 8:33 am

I need help programming a stat that tells me how often the CO folds to a button 3 bet after opening the pot. I'd also like to do this for other positions, such an button vs small blind etc.
d5t6y7
 
Posts: 4
Joined: Wed May 07, 2014 3:21 pm

Re: CO fold vs BU 3 bet

Postby Flag_Hippo » Tue May 30, 2017 6:46 pm

Just to clarify you would like that for when the 2Bet is a raise first in i.e. there are no limpers or do you want that for any 2Bet?
Flag_Hippo
Moderator
 
Posts: 14507
Joined: Tue Jan 31, 2012 7:50 am

Re: CO fold vs BU 3 bet

Postby d5t6y7 » Wed May 31, 2017 10:50 am

Flag_Hippo wrote:Just to clarify you would like that for when the 2Bet is a raise first in i.e. there are no limpers or do you want that for any 2Bet?


That's correct, when there are no limpers.
d5t6y7
 
Posts: 4
Joined: Wed May 07, 2014 3:21 pm

Re: CO fold vs BU 3 bet

Postby potamito » Wed May 31, 2017 11:38 am

d5t6y7 wrote:I need help programming a stat that tells me how often the CO folds to a button 3 bet after opening the pot. I'd also like to do this for other positions, such an button vs small blind etc.

Check your imbox i´ve sent u a PM
potamito
 
Posts: 802
Joined: Wed Apr 21, 2010 4:20 pm

Re: CO fold vs BU 3 bet

Postby Flag_Hippo » Wed May 31, 2017 3:10 pm

I've attached a stat for that which you can edit for other positions:

cnt_p_3bet_def_action_fold_when_rfi_co_vs_btn
Code: Select all
sum(if[cash_hand_player_statistics.flg_p_first_raise and cash_hand_player_statistics.flg_p_open_opp and cash_hand_player_statistics.position = 1 and cash_hand_player_statistics.flg_p_3bet_def_opp and cash_hand_player_statistics.enum_p_3bet_action='F' and cash_hand_summary.str_aggressors_p LIKE '810%', 1, 0])

cnt_p_3bet_def_opp_when_rfi_co_vs_btn
Code: Select all
sum(if[cash_hand_player_statistics.flg_p_first_raise and cash_hand_player_statistics.flg_p_open_opp and cash_hand_player_statistics.position = 1 and cash_hand_player_statistics.flg_p_3bet_def_opp and cash_hand_summary.str_aggressors_p LIKE '810%', 1, 0])
Attachments
Fold to PF 3Bet vs BTN After RFI In CO.zip
(834 Bytes) Downloaded 61 times
Flag_Hippo
Moderator
 
Posts: 14507
Joined: Tue Jan 31, 2012 7:50 am

Re: CO fold vs BU 3 bet

Postby d5t6y7 » Wed May 31, 2017 8:52 pm

Thank you for creating this, Flag Hippo. In order to change the position to say btn vs small blind, would I set position= 0
and change LIKE '810%', 1, 0 to LIKE '810%', 0 ,9?
d5t6y7
 
Posts: 4
Joined: Wed May 07, 2014 3:21 pm

Re: CO fold vs BU 3 bet

Postby Flag_Hippo » Thu Jun 01, 2017 6:33 am

d5t6y7 wrote:In order to change the position to say btn vs small blind, would I set position= 0

Yes.
d5t6y7 wrote:and change LIKE '810%', 1, 0 to LIKE '810%', 0 ,9?

You don't need to change the numbers at the end as they are part of the IF function so you only need to change the numbers inside the single quotes and for BTN vs SB that would be LIKE '809%'. This aggressors string records the positions of the aggressive actions in order, so that says position 8 "bet" (the BB was posted) then position 0 (the BTN) 2bet and position 9 (the SB) 3bet. See this post for more information on how the actors and aggressors strings work.
Flag_Hippo
Moderator
 
Posts: 14507
Joined: Tue Jan 31, 2012 7:50 am

Re: CO fold vs BU 3 bet

Postby d5t6y7 » Fri Jun 02, 2017 8:18 am

I don't know whether to create a new thread for this one, but I think it's closely related enough to put in the same thread. I'm also interested in creating a stat that tells you how often a player 3 bet vs a certain position, e.g how often a player 3 bet against a CO open on the button, again ignoring limpers.
d5t6y7
 
Posts: 4
Joined: Wed May 07, 2014 3:21 pm

Re: CO fold vs BU 3 bet

Postby Flag_Hippo » Fri Jun 02, 2017 3:15 pm

There is a built-in stat called '3Bet vs CO Open' and if you add cash_hand_player_statistics.position = 0 to it that would give you what you want. You can also edit the position and the aggressors/actors string in the expressions to give you stats for other positions.
Flag_Hippo
Moderator
 
Posts: 14507
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 36 guests

cron
highfalutin