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

Forum for users that want to write their own custom queries against the PT database either via the Structured Query Language (SQL) or using the PT3 custom stats/reports interface.

Moderator: Moderators

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

Postby PokerOkk » Mon Jun 07, 2010 9:22 am

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.
PokerOkk
 
Posts: 12
Joined: Sat May 17, 2008 8:35 am

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

Postby kraada » Mon Jun 07, 2010 11:20 am

Is this stat for preflop action only?
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

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

Postby PokerOkk » Mon Jun 07, 2010 11:21 am

kraada wrote:Is this stat for preflop action only?

ohh sorry. yes, preflop only.
PokerOkk
 
Posts: 12
Joined: Sat May 17, 2008 8:35 am

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

Postby kraada » Mon Jun 07, 2010 12:56 pm

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.
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

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

Postby skatemaza » Sat Jun 26, 2010 2:00 pm

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
skatemaza
 
Posts: 21
Joined: Wed Sep 03, 2008 10:07 am

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

Postby WhiteRider » Sat Jun 26, 2010 2:25 pm

The Tutorial: Custom Reports and Statistics has a walkthrough of how to build a stat from column expressions.
WhiteRider
Moderator
 
Posts: 54018
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

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

Postby skatemaza » Sat Jun 26, 2010 3:42 pm

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
skatemaza
 
Posts: 21
Joined: Wed Sep 03, 2008 10:07 am

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

Postby WhiteRider » Sat Jun 26, 2010 4:05 pm

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.
WhiteRider
Moderator
 
Posts: 54018
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

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

Postby skatemaza » Fri Jul 02, 2010 11:18 am

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% ()
skatemaza
 
Posts: 21
Joined: Wed Sep 03, 2008 10:07 am

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

Postby kraada » Fri Jul 02, 2010 11:52 am

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.
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Next

Return to Custom Stats, Reports, and SQL [Read Only]

Who is online

Users browsing this forum: Amazonbot and 33 guests

cron