Page 1 of 1

Help with this custom stats

PostPosted: Thu Jan 03, 2013 3:29 am
by K-nari0
http://www.youtube.com/watch?v=4wfH5s5TTe4&list=PLtrqpfpEM_LYUNqse_VMslgzOpl9GFSGi&index=4

<iframe width="640" height="480" src="http://www.youtube.com/embed/4wfH5s5TTe4" frameborder="0" allowfullscreen></iframe>

(see 0,33 seconds screenshot)


Those stats are the lower left corner (above the chat) for a SNG, the stats change according to the number of players left in the tournament or by the size of your stack and indicates the range of hands that is convenient to play at that time.

anyone know how to create it? or any tutorial or videotutorial ?

Re: Help with this custom stats

PostPosted: Thu Jan 03, 2013 10:58 am
by kraada
PokerTracker doesn't know anything about what's going on in other tables in a given tournament so while you could do something like that but it would have to be only for single table tournaments.

Re: Help with this custom stats

PostPosted: Thu Jan 03, 2013 11:34 am
by K-nari0
I know it can not be for MTT, but I want to know how to do it for one table tournaments, could you explain please?

Re: Help with this custom stats

PostPosted: Fri Jan 04, 2013 2:05 pm
by kraada
In order to put this together, then, you'd need to decide what M ranges (or BB ranges) you wanted to use for the various action groupings, and you'd need to have your table of what hands you'd want to list.

Then the way to do this is to create a new Live stat that has formatting something like this:

if(live_cnt_players = 9, if(live_amt_bb >= X, format('List what you want to see here'), if(live_amt_bb >= Y, format('Pick something else'), .... if(live_cnt_players = 8, if(live_amt_bb >= Z, format('And keep going'), ....

It's going to be a complex if statement, you'll want your live_amt_bb numbers generally descending since what gets hit first is what is displayed - so for example you might start at >= 20BB, then have >= 10BB and that second one would be 10-20. format() just prints out text which is what you want to see. I showed BB here simply because the formula is easier to construct. M is live_amt_stack / (live_amt_bb + live_amt_sb + live_amt_ante * live_cnt_players).

Also please note that the BB or M value doesn't adjust to the new blind level for one hand so you won't have the proper printout for one hand when the blinds go up.

Re: Help with this custom stats

PostPosted: Fri Jan 11, 2013 6:05 am
by K-nari0
kraada wrote:In order to put this together, then, you'd need to decide what M ranges (or BB ranges) you wanted to use for the various action groupings, and you'd need to have your table of what hands you'd want to list.

Then the way to do this is to create a new Live stat that has formatting something like this:

if(live_cnt_players = 9, if(live_amt_bb >= X, format('List what you want to see here'), if(live_amt_bb >= Y, format('Pick something else'), .... if(live_cnt_players = 8, if(live_amt_bb >= Z, format('And keep going'), ....

It's going to be a complex if statement, you'll want your live_amt_bb numbers generally descending since what gets hit first is what is displayed - so for example you might start at >= 20BB, then have >= 10BB and that second one would be 10-20. format() just prints out text which is what you want to see. I showed BB here simply because the formula is easier to construct. M is live_amt_stack / (live_amt_bb + live_amt_sb + live_amt_ante * live_cnt_players).

Also please note that the BB or M value doesn't adjust to the new blind level for one hand so you won't have the proper printout for one hand when the blinds go up.


Thank you so much :D , I will try it now :geek: