Page 1 of 1

Call 4bet after 3bet

PostPosted: Mon Aug 27, 2012 12:21 pm
by zoli8701
Hi!

I was looking for a stat that shows me how often a player calls my 4bet after he made a 3bet.
I only found a stat that shows, how often a player call the 4bet regardless of his previous action, so i tried to make my own custom stat, but i didn't manage to make that.

I've tried these value expressions:
(cnt_p_4bet_def_action_call_after_3b / cnt_p_4bet_def_opp) * 100
(cnt_p_4bet_def_action_call_after_3b / cnt_p_4bet_def_opp_after_3b) * 100
(cnt_p_4bet_def_action_call_after_3b / cnt_p_5bet_opp_after_3b) * 100
(cnt_p_4bet_def_action_call_after_3b / cnt_p_5bet_opp) * 100

I'm a noob in custom stat making...
I would appreciate it if somebody could help me in making this stat work.

Thx,

Zoli8701

Re: Call 4bet after 3bet

PostPosted: Mon Aug 27, 2012 2:48 pm
by kraada
The cnt_p_..... pieces all refer to columns on the Columns page. If the columns don't already exist, you won't be able to refer to them. Columns are what take data from the database directly.

Re: Call 4bet after 3bet

PostPosted: Mon Aug 27, 2012 3:35 pm
by zoli8701
OK, i see.

Could you help me with ctreating the colunm(s) i need?
Unfortunately it's all chinese for :(.

Re: Call 4bet after 3bet

PostPosted: Mon Aug 27, 2012 4:26 pm
by kraada
You'd want to define your new column as:

sum(if[cash_hand_player_statistics.flg_p_3bet AND cash_hand_player_statistics.enum_p_4bet_action = 'C', 1, 0])

And then you can use the existing column cnt_p_4bet_def_opp_after_3b as your opportunities column (ie- the denominator of your fraction).

Re: Call 4bet after 3bet

PostPosted: Mon Aug 27, 2012 7:31 pm
by zoli8701
It's working :)
Thanks a lot!