Page 1 of 2

help to make "4bet/fold to push" stat

PostPosted: Mon Jun 07, 2010 9:22 am
by PokerOkk
Hello people! )
I try all week to make "4bet/fold to push"stat , but it no works. I dont understand how to make it right. Help me plz.

Re: help to make "4bet/fold to push" stat

PostPosted: Mon Jun 07, 2010 11:20 am
by kraada
Is this stat for preflop action only?

Re: help to make "4bet/fold to push" stat

PostPosted: Mon Jun 07, 2010 11:21 am
by PokerOkk
kraada wrote:Is this stat for preflop action only?

ohh sorry. yes, preflop only.

Re: help to make "4bet/fold to push" stat

PostPosted: Mon Jun 07, 2010 12:56 pm
by kraada
Create the following two columns:

cnt_p_4b_fold: sum(if[holdem_hand_player_statistics.flg_p_4bet and holdem_hand_player_statistics.enum_folded = 'P', 1, 0])

cnt_p_4b_face_shove: sum(if[holdem_hand_player_statistics.flg_p_4bet and holdem_hand_player_statistics.enum_face_allin = 'P', 1, 0])

Put the former over the latter in the statistic and multiply by 100 to get a percentage.

Re: help to make "4bet/fold to push" stat

PostPosted: Sat Jun 26, 2010 2:00 pm
by skatemaza
Put the former over the latter in the statistic and multiply by 100 to get a percentage.



what do you mean with that?
I do not understand what to do after creating the two columns

thx

greets Martin

Re: help to make "4bet/fold to push" stat

PostPosted: Sat Jun 26, 2010 2:25 pm
by WhiteRider
The Tutorial: Custom Reports and Statistics has a walkthrough of how to build a stat from column expressions.

Re: help to make "4bet/fold to push" stat

PostPosted: Sat Jun 26, 2010 3:42 pm
by skatemaza
kraada wrote:Create the following two columns:

cnt_p_4b_fold: sum(if[holdem_hand_player_statistics.flg_p_4bet and holdem_hand_player_statistics.enum_folded = 'P', 1, 0])

cnt_p_4b_face_shove: sum(if[holdem_hand_player_statistics.flg_p_4bet and holdem_hand_player_statistics.enum_face_allin = 'P', 1, 0])

Put the former over the latter in the statistic and multiply by 100 to get a percentage.



can we include something, that the shove is bigger than 90bb for example?!

because 4bet/calling for 50bb is always a call


edit:

will try out this solution:

cnt_p_4b_face_shove: sum(if[holdem_hand_player_statistics.flg_p_4bet and holdem_hand_player_statistics.enum_face_allin = 'P', 1, 0 AND holdem_hand_summary.amt_p_effective_stack>=80])

edit2: my solution did not work

Re: help to make "4bet/fold to push" stat

PostPosted: Sat Jun 26, 2010 4:05 pm
by WhiteRider
You would need to build your column like this:

cnt_p_4b_face_shove: sum(if[holdem_hand_player_statistics.flg_p_4bet and holdem_hand_player_statistics.enum_face_allin = 'P' AND holdem_hand_summary.amt_p_effective_stack>=80, 1, 0])

Have a look at the Tutorial: Custom Reports and Statistics for how to construct column expressions.

You could also check for your own stack rather than the effective stack (which could be significantly smaller even if the short stack is not involved in the 4-bet action). That is stored in:
holdem_hand_player_detail.amt_before

That value is in monetary value, so you would need to divide by "holdem_limit.amt_bb" if you want the value in BB.

Re: help to make "4bet/fold to push" stat

PostPosted: Fri Jul 02, 2010 11:18 am
by skatemaza
Hi,
I have made this stat and i think it works.
But i cannot see how many times a player folded to how many times this appears.

Example: should be: 40% (4/10)
but is: 40% ()

Re: help to make "4bet/fold to push" stat

PostPosted: Fri Jul 02, 2010 11:52 am
by kraada
The Value Expression in the Stat needs to be pretty exactly formatted; you want: (a / b) * 100 in that order, where a and b are the columns you've built.