Description of possible values in each database field

Discuss how to create custom stats, reports and HUD profiles and share your creations.

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Description of possible values in each database field

Postby roundar » Thu Jul 05, 2012 12:04 am

I'm just starting to work on custom stats and I was wondering if there is a list somewhere of possible values for each database field. For example, I know lookup_actions_p.action has the possible values 'RC', 'RF', 'C%F', etc.
roundar
 
Posts: 12
Joined: Sat May 26, 2012 12:25 pm

Re: Description of possible values in each database field

Postby WhiteRider » Thu Jul 05, 2012 3:29 am

We don't yet have documentation for the PT4 database structure because it is still subject to change during the Beta phase.

Actions strings can contain any of the 'action' characters: X (check), F (fold), C (call), B (bet), R (raise); and in any valid order (obviously you will never have any other actions after a fold, for example).

If you have any other questions please feel free to ask.
WhiteRider
Moderator
 
Posts: 54017
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Re: Description of possible values in each database field

Postby roundar » Thu Jul 05, 2012 7:26 am

To avoid making another thread, I did have one question and the expression for a couple of my first stats:

Question being, when I create a set of hud popup profiles they do not have the navigation tabs on them that the default hud has, is there a way to put tabs on them?

Here's two of the Columns I've created. The first column counts flop cbets in position, in hu flops, in 3b+ pots. The second is very similar, but counts cbet OOP hu in single raised pot opportunities. ( I actually created a set of these for each condition to create the corresponding stat, these are just representative of the entire set.) They seem to be functioning, but are they doing what I'm intending for them to do?
Code: Select all
(broken down for easier reading, obviously I have the syntax correct on the actual expression)

sum(
  if
  [
    cash_hand_player_statistics.flg_f_has_position AND ; Player is IP
    cash_hand_summary.cnt_players_f = 2 AND ; Flop is HU
    lookup_actions_p.action SIMILAR TO '(R|R%R)' AND ; preflop action was either a single raise or multiple (4b etc, but guarantees player entered the flop with initiative)
    cash_hand_player_statistics.flg_p_3bet_opp AND  ; Had 3b opportunity, guarantees if PF actions was simply 'R' that raise must have been a 3b
    lookup_actions_f.action SIMILAR TO 'B%' ; cbet
   , 1, 0
  ]
)


sum(
  if
  [
    NOT(cash_hand_player_statistics.flg_f_has_position) AND
    cash_hand_summary.cnt_players_f = 2 AND
    lookup_actions_p.action = 'R' AND
    NOT( cash_hand_player_statistics.flg_p_3bet_opp) AND
    lookup_actions_f.action SIMILAR TO '(X|B%)'
    , 1, 0
  ]
)
roundar
 
Posts: 12
Joined: Sat May 26, 2012 12:25 pm

Re: Description of possible values in each database field

Postby kraada » Thu Jul 05, 2012 7:45 am

Those do look like they'll do what you need - one point though, you don't need hard coded in or out of position stats for anything postflop. Just make sure the stat has the appropriate categories and you'll see the Has Position drop down in the Item Properties when you add it to the HUD and you can set it to in or out of position there. This might save you duplicate stat creation later! (Though you may still want an IP/OOP specific version for a report, I suppose.)
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY


Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 22 guests

cron