Page 1 of 2

Continuation Bet size stat

PostPosted: Tue Jun 16, 2015 6:15 am
by StarsIsRigged
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.

Re: Continuation Bet size stat

PostPosted: Tue Jun 16, 2015 7:01 am
by 4StarGen
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

Re: Continuation Bet size stat

PostPosted: Tue Jun 16, 2015 7:16 am
by kraada
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.

Re: Continuation Bet size stat

PostPosted: Tue Jun 16, 2015 8:28 am
by StarsIsRigged
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.

Re: Continuation Bet size stat

PostPosted: Tue Jun 16, 2015 8:58 am
by StarsIsRigged
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?

Re: Continuation Bet size stat

PostPosted: Tue Jun 16, 2015 9:26 am
by StarsIsRigged
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.)

Re: Continuation Bet size stat

PostPosted: Tue Jun 16, 2015 12:11 pm
by kraada
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 :)

Re: Continuation Bet size stat

PostPosted: Tue Jun 16, 2015 1:09 pm
by StarsIsRigged
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

Re: Continuation Bet size stat

PostPosted: Tue Jun 16, 2015 4:01 pm
by kraada
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.

Re: Continuation Bet size stat

PostPosted: Sun Nov 01, 2015 6:39 am
by lapte
what abaut a stat on response to particular cb size like fold call and raise?

highfalutin