Continuation Bet size stat

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Continuation Bet size stat

Postby StarsIsRigged » Tue Jun 16, 2015 6:15 am

Hello, I want to create a stat where I can see how often villains makes a continuation bet between 56 and 68% of the pot. I want also to know in how many cases of situations he is doing that.

Can someone confirm that this code is correct? In Pokertracker 4 I cant see the "Show Times/Opportunites" field so is there something wrong with my code?

Code: Select all
sum(if[cash_hand_player_statistics.flg_f_cbet
AND
cash_hand_player_statistics.amt_bet_f  >= cash_hand_summary.amt_pot_f*0.56
AND
cash_hand_player_statistics.amt_bet_f  <=
cash_hand_summary.amt_pot_f*0.68
,1,0])



Image

And one more question. Is it possible to test custom stats outside of the poker tabels? For example like with notetracker. The stats don´t start to change if I go through a hand with the Pokertracker 4 hand replayer.
StarsIsRigged
 
Posts: 53
Joined: Sun Feb 15, 2015 3:38 pm

Re: Continuation Bet size stat

Postby 4StarGen » Tue Jun 16, 2015 7:01 am

for your last question, yes you can, you can check what hands meet your criteria. I don't have the time now, but look in my threads, there's the answer.
Gl
4StarGen
 
Posts: 955
Joined: Sat Mar 08, 2014 6:58 am

Re: Continuation Bet size stat

Postby kraada » Tue Jun 16, 2015 7:16 am

That looks like it should work so the most likely reason you're not seeing show times and opportunities is the formatting of the Value Expression in your stat. Could you paste it here as you have it? It needs to be exactly (A / B) * 100 any other format won't work.
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: Continuation Bet size stat

Postby StarsIsRigged » Tue Jun 16, 2015 8:28 am

Value Expression: BassCntFlopCBsizeBetween56and68Percent
And behind this expression there is my code form above.

(A/B)*100

I dont know how I can use this now with my expression.

I guess this would make no sense:^^
( BassCntFlopCBsizeBetween56and68Percent / BassCntFlopCBsizeBetween56and68Percent ) * 100

I guess I must decide for OOP and IP right?

So for IP I could use my code from above. For OOP I would use this code.

Code: Select all
sum(if[cash_hand_player_statistics.flg_f_cbet_oop
AND
cash_hand_player_statistics.amt_bet_f  >= cash_hand_summary.amt_pot_f*0.56
AND
cash_hand_player_statistics.amt_bet_f  <=
cash_hand_summary.amt_pot_f*0.68
,1,0])


But its not working. :-( Invalid SQL Statement.
StarsIsRigged
 
Posts: 53
Joined: Sun Feb 15, 2015 3:38 pm

Re: Continuation Bet size stat

Postby StarsIsRigged » Tue Jun 16, 2015 8:58 am

Ah lol, its called:
flg_f_cbet_opp not flg_f_cbet_oop

So here are now my two expression:

BassCntFlopCBsizeBetween56and68Percent_InPosition
Code: Select all
sum(if[cash_hand_player_statistics.flg_f_cbet
AND
cash_hand_player_statistics.amt_bet_f  >= cash_hand_summary.amt_pot_f*0.56
AND
cash_hand_player_statistics.amt_bet_f  <=
cash_hand_summary.amt_pot_f*0.68
,1,0])



BassCntFlopCBsizeBetween56and68Percent_OutOfPosition
Code: Select all
sum(if[cash_hand_player_statistics.flg_f_cbet_opp
AND
cash_hand_player_statistics.amt_bet_f  >= cash_hand_summary.amt_pot_f*0.56
AND
cash_hand_player_statistics.amt_bet_f  <=
cash_hand_summary.amt_pot_f*0.68
,1,0])


My value expression:
(BassCntFlopCBsizeBetween56and68Percent_InPosition / BassCntFlopCBsizeBetween56and68Percent_OutOfPosition ) * 100

If I choose:
Format Type: Percent [x] Decimals
Then I got the "Show Times/Opportunites" field. :-)

( InPosition / OutOfPosition ) * 100 is the formular for the average between in and out of position right?
StarsIsRigged
 
Posts: 53
Joined: Sun Feb 15, 2015 3:38 pm

Re: Continuation Bet size stat

Postby StarsIsRigged » Tue Jun 16, 2015 9:26 am

4StarGen wrote:for your last question, yes you can, you can check what hands meet your criteria. I don't have the time now, but look in my threads, there's the answer.
Gl


I havent found anything and I dont know which of your threads you mean now. I know that I can filter for hands that meet the criteria but if I go through the hand with the replayer then it does not affect my stats. (I have test different stats but it was not working.)
StarsIsRigged
 
Posts: 53
Joined: Sun Feb 15, 2015 3:38 pm

Re: Continuation Bet size stat

Postby kraada » Tue Jun 16, 2015 12:11 pm

BassCntFlopCBsizeBetween56and68Percent_OutOfPosition isn't really named peroperly - it's your opportunity - the value is what you want, but it's not in or out of position it's just the chance you had to cbet.

But it sounds like you got it figured out by changing the format type :)
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: Continuation Bet size stat

Postby StarsIsRigged » Tue Jun 16, 2015 1:09 pm

Yes, the part with the opptertunite is working.

But lets say I want to know how often someone bets 56 - 68% of the pot if he is out of position or in position.

Is this not working for out of position?
I thought:

flg_f_cbet <-- For in position
flg_f_cbet _opp <-- For out of position


Code: Select all
sum(if[cash_hand_player_statistics.flg_f_cbet _opp
AND
cash_hand_player_statistics.amt_bet_f  >= cash_hand_summary.amt_pot_f*0.56
AND
cash_hand_player_statistics.amt_bet_f  <=
cash_hand_summary.amt_pot_f*0.68
,1,0])



For example the normal Cbet stat in Pokertracker:
Cbet Flop
Value expression: (cnt_f_cbet / cnt_f_cbet_opp) * 100

cnt_f_cbet = sum(if[cash_hand_player_statistics.flg_f_cbet, 1, 0])
cnt_f_cbet_opp = sum(if[cash_hand_player_statistics.flg_f_cbet_opp, 1, 0])

For this stat there is a "Has Position" field but its not available for my stat ...
Image
StarsIsRigged
 
Posts: 53
Joined: Sun Feb 15, 2015 3:38 pm

Re: Continuation Bet size stat

Postby kraada » Tue Jun 16, 2015 4:01 pm

You were incorrect - flg_f_cbet is how often a player cbets the flop, flg_f_cbet_opp is how often he has a chance to cbet the flop.

To get the Has Position property to show you just need to give it the Flop Category on the Details tab in the stat.
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: Continuation Bet size stat

Postby lapte » Sun Nov 01, 2015 6:39 am

what abaut a stat on response to particular cb size like fold call and raise?
lapte
 
Posts: 8
Joined: Thu Sep 27, 2012 2:02 am

Next

Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 16 guests

cron
highfalutin