3-max HUD

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

3-max HUD

Postby allsk » Wed Feb 22, 2012 1:24 pm

Hi,

I've been playing the 3-max tables on Ongame lately.
It would be great with a specialized HUD for 3-max tables, does this exist somewhere on these forums?

The stats I'm missing the most is a breakdown of VPIP/PFR/3B in SB/BB/BTN.

I realize it's possible to create this myself, but it's a lot of work.
allsk
 
Posts: 7
Joined: Sun Jan 18, 2009 2:12 pm

Re: 3-max HUD

Postby kraada » Wed Feb 22, 2012 1:37 pm

I'm not aware of one existing at this time. For what it's worth though, building this kind of setup will be a lot easier once PT4 is available and given our stage of development you may just be best off waiting rather than putting in a large chunk of time building things in PT3 right now.
kraada
Moderator
 
Posts: 54430
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: 3-max HUD

Postby kroma » Wed Feb 22, 2012 1:51 pm

hi, in configure, select "configure stats" , select in "sections" flange "holdem cash player statistics", move to colums flange and create 3 colums for hands/vpip/PFR and 6 for 3bet Preflop.

3 colums for hands positions:

Hands BTN:(name cnt_hands_btn)
sum(if[holdem_hand_player_statistics.position = 0 AND
holdem_hand_player_statistics.id_hand > 0, 1, 0])

Hands SB:(name cnt_hands_sb)
sum(if[holdem_hand_player_statistics.position = 9 AND
holdem_hand_player_statistics.id_hand > 0, 1, 0])

Hands BB:(name cnt_hands_bb)
sum(if[holdem_hand_player_statistics.position = 8 AND
holdem_hand_player_statistics.id_hand > 0, 1, 0])

3 colums for vpip:

vpip BTN:(name cnt_vpip_btn)
sum( if[holdem_hand_player_statistics.position = 0 AND
holdem_hand_player_statistics.flg_vpip , 1, 0])

vpip SB:(name cnt_vpip_sb)
sum( if[holdem_hand_player_statistics.position = 9 AND
holdem_hand_player_statistics.flg_vpip , 1, 0])

vpip BB:(name cnt_vpip_bb)
sum( if[holdem_hand_player_statistics.position = 8 AND
holdem_hand_player_statistics.flg_vpip , 1, 0])

3 colums for PFR:

PFR BTN:(name cnt_pfr_btn)
sum( if[holdem_hand_player_statistics.position = 0 AND
holdem_hand_player_statistics.cnt_p_raise > 0 , 1, 0])

PFR SB:(name cnt_pfr_sb)
sum( if[holdem_hand_player_statistics.position = 9 AND
holdem_hand_player_statistics.cnt_p_raise > 0 , 1, 0])

PFR BB:(name cnt_pfr_bb)
sum( if[holdem_hand_player_statistics.position = 8 AND
holdem_hand_player_statistics.cnt_p_raise > 0 , 1, 0])

and 6 colums for 3BETPreflop:

3Bet Preflop BTN:(name cnt_p_3bet_btn)
sum(if[holdem_hand_player_statistics.position = 0 AND
holdem_hand_player_statistics.flg_p_3bet, 1, 0])

3Bet Preflop BTN Opp:(name cnt_p_3bet_btn_opp)
sum(if[holdem_hand_player_statistics.position = 0 AND
holdem_hand_player_statistics.flg_p_3bet_opp, 1, 0])



3Bet Preflop SB:(name cnt_p_3bet_sb)
sum(if[holdem_hand_player_statistics.position = 9 AND
holdem_hand_player_statistics.flg_p_3bet, 1, 0])

3Bet Preflop SB Opp:(name cnt_p_3bet_sb_opp)
sum(if[holdem_hand_player_statistics.position = 9 AND
holdem_hand_player_statistics.flg_p_3bet_opp, 1, 0])



3Bet Preflop BB:(name cnt_p_3bet_bb)
sum(if[holdem_hand_player_statistics.position = 8 AND
holdem_hand_player_statistics.flg_p_3bet, 1, 0])

3Bet Preflop BB Opp:(name cnt_p_3bet_bb_opp)
sum(if[holdem_hand_player_statistics.position = 8 AND
holdem_hand_player_statistics.flg_p_3bet_opp, 1, 0])

now go to flange statistics:

duplicate VPIP PFR and 3bet Preflop and change the colums for your create colums.
kroma
 
Posts: 14
Joined: Wed Feb 22, 2012 10:49 am

Re: 3-max HUD

Postby allsk » Tue Feb 28, 2012 9:47 pm

Thanks for the help, but I'm not able to make it work.

I created the stats without any issues and now they are marked in blue; VPIP (Custom), PFR (Custom) and 3Bet (Custom).
I didn't quite understand the last sentence, so maybe the problem arose there; "duplicate VPIP PFR and 3bet Preflop and change the colums for your create colums."

How am I supposed to continue from there to add the stats to my HUD?

Sorry for being such a noob, I've been trying for several days but I just can't make it work.
allsk
 
Posts: 7
Joined: Sun Jan 18, 2009 2:12 pm

Re: 3-max HUD

Postby WhiteRider » Wed Feb 29, 2012 4:23 am

The Tutorial: Custom Reports and Statistics explains how to make columns from expressions like these, or to make new versions of columns using duplicate.
WhiteRider
Moderator
 
Posts: 54025
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Re: 3-max HUD

Postby kroma » Sat Mar 31, 2012 8:57 am

allsk wrote:Thanks for the help, but I'm not able to make it work.

I created the stats without any issues and now they are marked in blue; VPIP (Custom), PFR (Custom) and 3Bet (Custom).


you create 3 stats only? , or create new 15 columns and new 3 stats.



allsk wrote:I didn't quite understand the last sentence, so maybe the problem arose there; "duplicate VPIP PFR and 3bet Preflop and change the colums for your create colums."


for create stats or columns is more easy create a duplicate of stat or columns, if you need 3bet preflop btn, search 3bet preflop duplicate this, and change name and change the expresion.

and the same whit columns.

allsk wrote:How am I supposed to continue from there to add the stats to my HUD?

in poker tracker configure configure hud, select your hud, in stats you can add stats
kroma
 
Posts: 14
Joined: Wed Feb 22, 2012 10:49 am


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

Who is online

Users browsing this forum: No registered users and 0 guests