hud profile for different tourny levels

General discussion of PokerTracker 3.

Moderator: Moderators

Re: hud profile for different tourny levels

Postby kingkong32 » Tue Dec 14, 2010 4:37 am

Thank you this is exactly I searched for. But unfortunately ist does not work (The message is: “value expression is not valid“). I copied it in the value expression field. Could you check it please.
kingkong32
 
Posts: 52
Joined: Wed Dec 08, 2010 1:49 pm

Re: hud profile for different tourny levels

Postby kraada » Tue Dec 14, 2010 9:54 am

The expression validates for me.

This isn't a new Statistic this is a new Column - you have to build the columns first then use them in the Value Expression of the Statistics tab.

"cnt_vpip_1_4_sb" is the name of the new column - you want to put it in the "Name" section. Everything after the colon goes in Expression. Description is entirely up to you.

Then make "cnt_hands_1_4_sb" as another column.

Finally, use both of them in the Value Expression of a new Statistic on the Statistics tab.

For more on creation of custom statistics, see the Tutorial: Using Custom Reports and Statistics.
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: hud profile for different tourny levels

Postby kingkong32 » Fri Dec 17, 2010 11:12 am

Hi,

good news from me. I missunderstood you the first time, but now everything runs well. I can count separately for the small and big blind and blind level. Thank you very much, I am really happy with your Pokertracker und your help.

I have some new questions:
-I want also count the amount of the preflop raise. For example pfr=2BB, pfr>2BB AND <=3BB, pfr >=3BB. Could you post an example line for the column like before. Then I could adapt it. I dont know the Pokertracker expression for this.

- If I run a report and choose my new statistic values (for example PFR20, PFR30, PFR50, which stands each for a blind level, then in the report on the top it is only written PFR. PFR, PFR. How can I change this. Name and description are already changed by me.

- I have two computers. What is the best way two export my new columns and statistics. I could only find a way, to export every statistic separately. Thats al lot of work, since I have created nearly 20 new statistics. Is there a better way, so that I can export all my statistics in one row. Whats about the columns? Are they a part of the statistsics and the export is included or must I do anything else?
kingkong32
 
Posts: 52
Joined: Wed Dec 08, 2010 1:49 pm

Re: hud profile for different tourny levels

Postby kraada » Fri Dec 17, 2010 11:33 am

Unfortunately you do have to export each stat individually - but the columns do go with it. You can import them all at once though so you will save on that side of things (you can use ctrl or shift + click to highlight multiple rows in the import file window).

The "Title" field on the Format tab is what appears in reports - that's what you'll want to change so that it looks differently. Also if you want to make it wider or narrower, that's "Width".

For the raise sizing you want to use the field: tourney_holdem_hand_player_detail.amt_p_raise_made - that's the size of the raise you made in chips. If you wanted it in big blinds you can divide by tourney_holdem_blinds.amt_bb (which is the size of one big blind). So a column for a count of times a player raised to exactly two big blinds would be: sum(if[tourney_holdem_hand_player_detail.amt_p_raise_made = 2 * tourney_holdem_blinds.amt_bb, 1, 0])
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: hud profile for different tourny levels

Postby kingkong32 » Fri Dec 17, 2010 5:20 pm

ok, thank you.

I have found a mistake in my %bigblind call preflop raise at level 20 statistic:

My statistic is: (cnt_callpfr_bb_20 / cnt_hands_bb_20) * 100
with:
cnt_callpfr_bb_20=sum(if[tourney_holdem_hand_player_statistics.flg_blind_b and tourney_holdem_blinds.amt_bb =20 and tourney_holdem_hand_player_statistics.cnt_p_call>0, 1, 0])

cnt_hands_bb_20=sum(if[tourney_holdem_hand_player_statistics.flg_blind_b and tourney_holdem_blinds.amt_bb = 20 and ??????, 1, 0])

I dont konw the 3. condition. I only want to count hands, in which the small blind has raised. Could you help me and tell me the condition. i tried tourney_holdem_hand_player_statistics.cnt_p_pfr_call_opp>0 and tourney_holdem_hand_player_statistics.flg_blind_def_opp but it doesnt run it. It counts too much hands.
kingkong32
 
Posts: 52
Joined: Wed Dec 08, 2010 1:49 pm

Re: hud profile for different tourny levels

Postby kraada » Fri Dec 17, 2010 5:32 pm

You don't need a third condition - the first two will pick out all hands where you're in the big blind at that blind level as it is.
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: hud profile for different tourny levels

Postby kingkong32 » Fri Dec 17, 2010 5:40 pm

first I had only 2 conditions, but I only want to count the hands, in which the small blind has raised. Otherwise all hands are counted, in which the small blind folds or limps. The reason is, that I want to know the calling range of the big blind.
Last edited by kingkong32 on Fri Dec 17, 2010 5:46 pm, edited 1 time in total.
kingkong32
 
Posts: 52
Joined: Wed Dec 08, 2010 1:49 pm

Re: hud profile for different tourny levels

Postby kraada » Fri Dec 17, 2010 5:42 pm

Use tourney_holdem_hand_player_statistics.flg_p_face_raise then.
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: hud profile for different tourny levels

Postby kingkong32 » Tue Aug 09, 2011 5:38 am

Hey,

atm I'm improving my HUD and have two questions about some stats:

- I want to count some preflop values separately for intervalls of the effective stack. For example I want to count VP$IP for 10BB<effective Stack<=20bb. Can you tell me, which variable for the effective stack I can use or what I have to do to create something like this.

- I only play Heads Up and want to count how often the small blind openshoves (initial raise size Allin). Do you have any idea, which is the best way to do this?

Thanks,
kingkong32
 
Posts: 52
Joined: Wed Dec 08, 2010 1:49 pm

Re: hud profile for different tourny levels

Postby kraada » Tue Aug 09, 2011 8:52 am

(1) holdem_hand_player_detail.amt_p_effective_stack is what you are looking for and the other streets are there as well (just change p to f, t, or r). Since you only play heads up this will always work as you expect it to.

(2) holdem_hand_player_statistics.enum_allin = 'P' AND lookup_actions_p = 'R' AND holdem_hand_player_statistics.flg_blind_s - this will look for hands where the player went all-in preflop and his only preflop action was to raise exactly once and he was the small blind. Note though if he raises enough to cover you, this wouldn't count. If you want those to count too you'd want holdem_hand_player_detail.amt_p_raise_made > holdem_hand_player_detail.amt_p_effective_stack AND lookup_actions_p = 'R' AND holdem_hand_player_statistics.flg_blind_s
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

PreviousNext

Return to General [Read Only]

Who is online

Users browsing this forum: MagPie Crawler and 30 guests

cron