Select Page
Poker Forum
Over 1,292,000 Posts!
Poker ForumPoker News, Reviews, Tools

PokerTracker 3 and the Great Custom HUDscapades

Results 1 to 10 of 10
  1. #1
    spoonitnow's Avatar
    Join Date
    Sep 2005
    Posts
    14,219
    Location
    North Carolina

    Default PokerTracker 3 and the Great Custom HUDscapades

    I need a thread to dump all of my custom stats and HUD stuff in, so this is going to be it. I'm going to show you how to do it, then just provide a download link at the bottom of each post.

    Positional Stats

    I want to make a stat for a player's VPIP in early position to add to a HUD popup. We're going to define early position as any time someone is 4, 5 or 6 seats off of the button. Since VPIP is the times we put money in the pot voluntarily divided by the hands we had in that position, we're going to need two custom columns to make this work.

    For 6-max Players: I'd like to point out that here I'm grouping it so that the blinds will have the "blinds" stats, the BU/CO will have the "LP" stats, and the MP/UTG will have the "MP" stats, so you can use these too if you want.

    To make these columns, choose "Holdem Cash Player Statistics" from the Sections tab, then click the Columns tab and click the button that says New towards the middle near the bottom.

    The first custom column we're going to call cnt_hands_ep, and this will basically keep a count of how many hands we've seen in early position:

    Code:
    sum(if[((holdem_hand_summary.cnt_players = 7 and holdem_hand_player_statistics.position = 4) or
    (holdem_hand_summary.cnt_players = 8 and (holdem_hand_player_statistics.position = 4 or holdem_hand_player_statistics.position = 5)) or
    (holdem_hand_summary.cnt_players = 9 and (holdem_hand_player_statistics.position = 4 or holdem_hand_player_statistics.position = 5 or holdem_hand_player_statistics.position = 6))), 1, 0])
    The second custom column we're going to call cnt_vpip_ep, and this will keep a count of how many times we voluntarily put money into the pot in early position:

    Code:
    sum(if[((holdem_hand_summary.cnt_players = 7 and holdem_hand_player_statistics.position = 4) or
    (holdem_hand_summary.cnt_players = 8 and (holdem_hand_player_statistics.position = 4 or holdem_hand_player_statistics.position = 5)) or
    (holdem_hand_summary.cnt_players = 9 and (holdem_hand_player_statistics.position = 4 or holdem_hand_player_statistics.position = 5 or holdem_hand_player_statistics.position = 6))) and holdem_hand_player_statistics.flg_vpip, 1, 0])
    Now click on the "Statistics" tab and click the New button. Call the name "VP$IP EP" or whatever you want it to be called. In the description part put something like "VP$IP from early position." For value expression, put this:

    Code:
    (cnt_vpip_ep / cnt_hands_ep) * 100
    Which combines our two newly created columns in the way I mentioned earlier. Now click on the Format tab and make the title something like "VP$IP EP"; this is what will appear on reports at the top. Make your Width 50 or whatever, but if you don't set this it won't come up when you add it to any of the reports and you'll be wondering what the hell the deal is for an hour like I did. Make format expression this:

    Code:
    /%.2f
    That will make it appear like 8.42 or whatever with just two decimal points instead of 8.42142572589723489573489527893 or some crazy shit like that.

    Now I'm going to repeat for MP (the next two seats), LP and the blinds.

    Edit: Here is a quick way to do each of the columns for the blinds instead of making a big list of possibilities by the number of players:

    Code:
    sum(if[(holdem_hand_player_statistics.flg_blind_b or holdem_hand_player_statistics.flg_blind_s), 1, 0])
    
    and
    
    sum(if[(holdem_hand_player_statistics.flg_blind_b or holdem_hand_player_statistics.flg_blind_s) and holdem_hand_player_statistics.flg_vpip, 1, 0])
    Download Links:

    Positional VPIP Stats - http://www.megaupload.com/?d=UXSTIVTP
    Positional PFR Stats - http://www.megaupload.com/?d=6VUMME95

    I'll upload all of them together later once I'm finished.
  2. #2
    spoonitnow's Avatar
    Join Date
    Sep 2005
    Posts
    14,219
    Location
    North Carolina
    Here's some shit you'll have to copy/paste a lot if you try to do other positional stats:

    blinds: (holdem_hand_player_statistics.flg_blind_b or holdem_hand_player_statistics.flg_blind_s)
    lp: ((holdem_hand_summary.cnt_players = 3 and holdem_hand_player_statistics.position = 0) or (holdem_hand_summary.cnt_players > 4 and (holdem_hand_player_statistics.position = 0 or holdem_hand_player_statistics.position = 1)))
    mp: ((holdem_hand_summary.cnt_players = 5 and holdem_hand_player_statistics.position = 2) or (holdem_hand_summary.cnt_players > 5 and (holdem_hand_player_statistics.position = 2 or holdem_hand_player_statistics.position = 3)))
    ep: ((holdem_hand_summary.cnt_players = 7 and holdem_hand_player_statistics.position = 4) or (holdem_hand_summary.cnt_players = 8 and (holdem_hand_player_statistics.position = 4 or holdem_hand_player_statistics.position = 5)) or (holdem_hand_summary.cnt_players = 9 and (holdem_hand_player_statistics.position = 4 or holdem_hand_player_statistics.position = 5 or holdem_hand_player_statistics.position = 6)))
  3. #3
    spoonitnow's Avatar
    Join Date
    Sep 2005
    Posts
    14,219
    Location
    North Carolina
    Okay so I did a video of me adding positional 4-bet stats but I say fuck like 80 times so possibly NSFW

    http://www.youtube.com/watch?v=_pmGOXQZJaE
  4. #4
    spoonitnow's Avatar
    Join Date
    Sep 2005
    Posts
    14,219
    Location
    North Carolina
    Here's where I'm at on the preflop pop-up. I'll probably leave it formatted like this since I don't care so much for color or whatever.



    Edit: Here's a download link for all of the positional stats in this popup http://www.megaupload.com/?d=OBK3ZMBD
  5. #5
    spoonitnow's Avatar
    Join Date
    Sep 2005
    Posts
    14,219
    Location
    North Carolina


    If someone has limp/folded 5 or more times, a small ><> gets put beside of their name. Check seats 7 and 9 here.
  6. #6
    I wish you used HEM spoon.

    But the code looks similar. I wonder if I can figure it out for HEM? Hmmmm
    NH, WP, GG, TY, Etc..........................
  7. #7
    spoonitnow's Avatar
    Join Date
    Sep 2005
    Posts
    14,219
    Location
    North Carolina
    PokerTracker 3 - Colored Statistics for Advanced Players

    http://www.youtube.com/watch?v=xTmYFocL2Ok

    This video is about 8 minutes long. I show how to color HUD stats based on the values of other HUD stats. I use an example of coloring PFR based on how often our opponent folds preflop to a 3-bet.
  8. #8
    spoonitnow's Avatar
    Join Date
    Sep 2005
    Posts
    14,219
    Location
    North Carolina
    PokerTracker 3 - Color-Code Flop AF by Flop C/R Frequency

    http://www.youtube.com/watch?v=xEoHc1BJoUc

    Another video showing advanced color-coded stats since the other one's audio was messed up.
  9. #9
    spoonitnow's Avatar
    Join Date
    Sep 2005
    Posts
    14,219
    Location
    North Carolina
    Bump.

    C-bet Flop HU Stats Pack

    (Download: http://www.spoonitnow.com/wordpress/...op_hu_pack.zip)

    This contains four stats related to c-bet percentages on the flop when two players saw the flop: c-bet flop hu %, c-bet flop hu IP %, c-bet flop hu OOP %, and c-bet flop hu success %.

    Preflop Positional Stats Pack

    (Download: http://www.spoonitnow.com/wordpress/...ional_pack.zip)

    This contains a true LP/MP/EP/blinds version of each of the following stats: VPIP, PFR, 3-bet preflop, 4-bet preflop, fold to 3-bet preflop, and fold to 4-bet preflop. The LP positions are the BU and CO seats, the MP positions are the HJ and MP2 seats, and the EP positions are the UTG, UTG+1, and MP1 seats. These were primarily designed to create a preflop stats popup broken down by position.

    Flagged Hands Report

    (Download: http://www.spoonitnow.com/wordpress/...d-Hands.pt3rpt)

    This is a report that lists all of the hands flagged for review from the PT3 HUD. While PT3 came with an option to flag hands for later review while playing, it did not come with a means for reviewing these hands afterwards.
  10. #10
    Guest
    Hi ,

    This is nice ....... We learn from this post . we wait for your next post .


    Bye .........Have a good day ..

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •