Page 1 of 2

Check/Call stat?

PostPosted: Tue Sep 25, 2012 3:28 pm
by RAJS
Hi I'm trying to find check/call flop, check/call turn and check call river stats. I can't find them. Anyone who can help me make these customized stats?

Re: Check/Call stat?

PostPosted: Tue Sep 25, 2012 3:45 pm
by kraada
Those shouldn't be necessary in PT4 - you can just use Call Bet stats and set them in the HUD to Out of Position in the Has Position Item Property - that will guarantee you're OOP and thus any call must be a check/call.

Re: Check/Call stat?

PostPosted: Tue Sep 25, 2012 3:49 pm
by RAJS
OK, thanks but I want to use the stat in a report on myself not in the HUD.

EDIT: I'd actually also like it to filter for hands that I raised preflop, didn't chose to cbet but then check/called instead. Anyway of doing htis?

Thanks!

Re: Check/Call stat?

PostPosted: Tue Sep 25, 2012 4:21 pm
by kraada
You can be very precise with our filtering system - click More Filters in the bottom left. You can specify a wide range of actions in the Actions and Opportunities section. You can specify bets, calls, folds, raises, specific action sequences, specific opportunities - there's a ton there. Take a look around; you will be able to find everything you need in that are to filter to the hands you want to see.

Re: Check/Call stat?

PostPosted: Tue Sep 25, 2012 6:22 pm
by RAJS
Yes I know about the extra filters but I want a stat that I can use in the stats report aligned with other stats so I can compare easily. Is there any tutorial on how to make your own stats?

Thanks!

Re: Check/Call stat?

PostPosted: Wed Sep 26, 2012 3:29 am
by WhiteRider
The PT4 custom stats tutorial isn't ready yet, but the PT3 Tutorial: Custom Reports and Statistics should get you started - stats are built in basically the same way, although the database field names are slightly different in PT4.

However, before I go into detail - are you a registered PT4 user? Custom stats are only available to registered users and I don't see a license linked to your account.

Re: Check/Call stat?

PostPosted: Wed Sep 26, 2012 3:33 am
by RAJS
Maybe I wasn't clear but I want a stat in % which tells me how often I check/call the flop preferable also how often I check/call the flop as the preflop raiser (and also the same thing for the turn and river). To be frank I'm quite surprised this stat isn't incorporated in the program since it's not that uncommon. But anyhow I understand you can make your own stats so I've been looking into that and so far I think it should be something like this (I could be very wrong here since I'm not good at programming)..

((cnt_f_check + cnt_f_call ) / cnt_f_check_opp)) * 100

So, how many times I check and call the flop divided by the total amount of opportunities to check the flop. ( I know this doesn't take into account the fact that I should be the preflop raiser but it's a good start).

Problem now is that the cnt_f_check_opp variable doesn't seem to exist.
ยจ
Anyone that can help or point me in the right direction..

Thanks!

Re: Check/Call stat?

PostPosted: Wed Sep 26, 2012 3:37 am
by RAJS
I'm a registered user. Bought the program using another email address. Just linked the registration code to this account now.

Re: Check/Call stat?

PostPosted: Wed Sep 26, 2012 4:01 am
by WhiteRider
Cool - your registration is linked now. :)

What you suggest above won't work correctly - that will add up the number of hands where you called to the number of hands where you checked, which isn't what you want.

Firstly, there is a built-in stat for check/calling as preflop aggressor. This is "Call F Float Bet", and there are turn and river versions too.

If you also want a general check/call stat regardless of preflop action, read on.
What you need to do here is to create a new pair of columns to count the number of times that you check/called, and the number of opportunities you had to check/call.
I assume that in this case an "opportunity" would be when you check and face a bet or raise.

There are a couple of different ways to build these columns, but this is how I'd do it.

cnt_f_check_call =
sum(if[lookup_actions_f.action LIKE 'XC%', 1, 0])

cnt_f_check_call_opp =
sum(if[lookup_actions_f.action LIKE 'X_%', 1, 0])

Then you can make a new stat with this expression:

(cnt_f_check_call / cnt_f_check_call_opp) * 100

You can duplicate each of these and change the _f_ (flop) to _t_ for turn and _r_ for river.

Re: Check/Call stat?

PostPosted: Sat Jun 01, 2013 8:37 am
by PumaPerez
kraada wrote:Those shouldn't be necessary in PT4 - you can just use Call Bet stats and set them in the HUD to Out of Position in the Has Position Item Property - that will guarantee you're OOP and thus any call must be a check/call.


is there any option how to define this stat in HUD only for PFA? is it same as Call Flop Float Bet?