Displaying a statistic

Experiencing technical difficulties? Think you've found a problem with PokerTracker 3? Report it here.

Moderator: Moderators

Re: Displaying a statistic

Postby Eav1981 » Sat Sep 19, 2009 12:30 am

What is the term for when "hero" is small blind(or big blind, i dont think it matters), and faces a raise. The hero calls. What is that called (i dont think its called Cold Call) (if the villian raised from position 2 or 3 (not a steal position))

im trying to incorperate this into some of the custom stats and filters but am having trouble finding the proper term to look for/use.
Eav1981
 
Posts: 41
Joined: Tue Jul 28, 2009 10:59 pm

Re: Displaying a statistic

Postby WhiteRider » Sat Sep 19, 2009 4:49 am

That's just a call - there is no specific term for that.
In terms of PT3 stats, it's "Call PFR".
If you want a specific stat for that situation you can build it as a custom stat.
Please tell us exactly what you're tying to do?
WhiteRider
Moderator
 
Posts: 53972
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Re: Displaying a statistic

Postby Eav1981 » Sun Sep 20, 2009 10:43 pm

I am trying to see how much im losing in terms of Big bets/per 100hands in the Small blind position when i call/reraise a raise from an opponent sitting in UDG (Under the gun) (position = 3)

here is how far i got on my own

I set up a stat that will check to see when a player (Villian) from position 3 raises

Pfr3
sum( if[ holdem_hand_player_statistics.position=3 AND
holdem_hand_player_statistics.flg_p_first_raise, 1 , 0 ])

Then i try to set up the filter for myself (Me sitting in position 9, facing a raise from position 3, and me seeing the flop (meaning i called/reraised))

U9bb100
sum( if[ holdem_hand_player_statistics.position=9 AND
Holdem_hand_player_statistics.pfr3 AND
holdem_hand_player_statistics.flg_f_saw,
holdem_hand_player_statistics.amt_won /(holdem_limit.amt_bb) , 0 ] ) {NOT VALID}

U9Pfr3cnt
sum( if[ holdem_hand_player_statistics.position=8 AND
Holdem_hand_player_statistics.pfr3, 1 , 0 ]) {NOT VALID}

Formula
U9bb100 / (U9Pfr3cnt / 100)
Eav1981
 
Posts: 41
Joined: Tue Jul 28, 2009 10:59 pm

Re: Displaying a statistic

Postby WhiteRider » Mon Sep 21, 2009 4:46 am

That sort of thing won't work, I'm afraid.
Each stat is built from a single player's point of view.

If only one person raises then you can use:
holdem_hand_player_detail.val_p_raise_aggressor_pos = 3
..but if anyone else raises, or if someone else raises first and UTG limp/reraises for instance then these will count too.

You should be able to narrow it down to your situation pretty well, though.

holdem_hand_player_statistics.position=9 (in the SB)
holdem_hand_player_detail.val_p_raise_aggressor_pos=3 (says the last person to raise other than you was pos 3)
holdem_hand_player_statistics.flg_p_3bet_opp (means you have opportunity to 3bet, so face a single raise)
NOT holdem_hand_player_statistics.flg_p_squeeze_opp (says no-one called the open-raise)
holdem_hand_player_statistics.flg_f_saw (saw the flop)
holdem_hand_summary.cnt_players_f=2 (2 players saw the flop)
WhiteRider
Moderator
 
Posts: 53972
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Re: Displaying a statistic

Postby Eav1981 » Tue Sep 22, 2009 10:55 pm

Ah, i wasnt even aware that there was a *detail* stats, thank you for pointing that out now i have more tools to play with.

I set up the formula as follows and ran a quick test on around 15k hands (from Small blind position only) it seems to work except for some reason in reports it displays the numerical value folled by 2 blank boxes (EX: 43.01█ █) except the boxes are smaller and are white) (the numerical value seems accurate and the two boxes dont really bother me, found em to be a little weird and just thought id share that)

I used the following code(thank you very much for showing me how its done)

AAx
sum( if[ holdem_hand_player_statistics.position=9 AND
holdem_hand_player_detail.val_p_raise_aggressor_pos=3 AND
holdem_hand_player_statistics.flg_p_3bet_opp AND NOT
holdem_hand_player_statistics.flg_p_squeeze_opp AND
holdem_hand_player_statistics.flg_f_saw AND
holdem_hand_summary.cnt_players_f=2,
holdem_hand_player_statistics.amt_won /(holdem_limit.amt_bb) , 0 ] )

Ax
sum( if[ holdem_hand_player_statistics.position=8 AND
holdem_hand_player_detail.val_p_raise_aggressor_pos=3 AND
holdem_hand_player_statistics.flg_p_3bet_opp AND NOT
holdem_hand_player_statistics.flg_p_squeeze_opp AND
holdem_hand_player_statistics.flg_f_saw AND
holdem_hand_summary.cnt_players_f=2, 1 , 0 ])

Formula
AAx / (Ax / 100)




I dont know if its possible or not but i figured it wouldnt hurt to ask. Is there a way to see the Hand Details i played when the filter (Ax) is true? without having to sort through all other hands?
Eav1981
 
Posts: 41
Joined: Tue Jul 28, 2009 10:59 pm

Re: Displaying a statistic

Postby WhiteRider » Wed Sep 23, 2009 6:17 am

What did you put in the Format Expression for your new stat?
Those squares indicate some character that can't be displayed properly.

Eav1981 wrote:I dont know if its possible or not but i figured it wouldnt hurt to ask. Is there a way to see the Hand Details i played when the filter (Ax) is true? without having to sort through all other hands?


To see the individual hands which fit this criteria you will need to build a new custom stat in the Holdem Cash Hands section.

There are two approaches.

1. Build a boolean (true/false) stat to show when all the criteria are true.
See this post for details.
You can then add that stat to the built-in reports like Known Starting Hands Detail or Position Hands Detail. e.g. if you add it to Position Hands Detail (on the Positions tab) and select Small Blind at the top and add normal Filters for the rest of the criteria then it will list all of the hands where the preflop aggressor (PFA) was in position 3.
Equally, you could just build a HCH stat to show the position of the PFA and add that to the report, and sort the column by it.
e.g. in HCH
val_p_pfa_position = holdem_hand_player_detail.val_p_raise_aggressor_pos
(Actually, I already have that myself.. I'll attach it)
PF Aggressor Pos.zip
(405 Bytes) Downloaded 69 times

This will display the position of the preflop aggressor, so if you add other filters and sort by this column you can see the hands you want.

2. Now that you have the above PF Aggressor Pos stat you can use it in a Custom Report (again, Holdem Cash Hands section) to filter to show only the hands you are interested in.
Add a filter expression:
val_p_agg_pos = 3
..and add Simple Filters for the rest of the conditions.
Custom Reports guide
The new custom reports and stats guide I'm working on also has info on building custom reports.
WhiteRider
Moderator
 
Posts: 53972
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Re: Displaying a statistic

Postby Eav1981 » Wed Sep 23, 2009 10:10 pm

thanks friend i got it working


I build a stat in Holdem Cash Hand with the following values

U8Cpfr3
holdem_hand_player_statistics.position=8 AND
holdem_hand_player_detail.val_p_raise_aggressor_pos=3 AND
holdem_hand_player_statistics.flg_p_3bet_opp AND NOT
holdem_hand_player_statistics.flg_p_squeeze_opp AND
holdem_hand_player_statistics.flg_f_saw AND
holdem_hand_summary.cnt_players_f=2

(I couldnt really figure out how to set up the "Format Expression" with a single stat instead of two so i just kinda cheated and folded over your example with 2 stats into 1

if ( U8Cpfr3, format_bool( U8Cpfr3, 'check' ), '' )




Then went to custum reports and in the filters section put in
#U8Cpfr3# = true


Then i just customized the the report to show Amount Won, and Hand



Thanks you very much once again, Being able to mess around with all these stats, filters and custom reports should help me seal a few leaks in my poker game.
Eav1981
 
Posts: 41
Joined: Tue Jul 28, 2009 10:59 pm

Re: Displaying a statistic

Postby Eav1981 » Wed Sep 23, 2009 11:04 pm

I was also able to see how i did in multi way pots by changing the

holdem_hand_summary.cnt_players_f=2

to

holdem_hand_summary.cnt_players_f>2
Eav1981
 
Posts: 41
Joined: Tue Jul 28, 2009 10:59 pm

Re: Displaying a statistic

Postby Eav1981 » Wed Sep 23, 2009 11:29 pm

and removing
holdem_hand_player_statistics.flg_p_squeeze_opp
Eav1981
 
Posts: 41
Joined: Tue Jul 28, 2009 10:59 pm

Re: Displaying a statistic

Postby WhiteRider » Thu Sep 24, 2009 5:49 am

Good work!
WhiteRider
Moderator
 
Posts: 53972
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Previous

Return to Technical Support / Bug Reports [Read Only]

Who is online

Users browsing this forum: No registered users and 23 guests

cron
highfalutin