Page 1 of 1

NoteTracker rule using built-in EP/MP position definitions

PostPosted: Mon May 04, 2020 9:57 am
by Dr_Freeze
Hi,
I would like to create a NoteTracker rule that shows the raise-first-in cardrange of opponents by position for a 9-handed full ring table. What I can't seem to figure out is how to build the rule to use the built-in Pokertracker definitions of EP and MP (the remainder of the positions are straightforward... Button is 0, CO is 1, BB is 8 and SB is 9). However, EP and MP would vary based on the number of players dealt into the hand, so the numbering system is more tricky to use in defining those positions.

Pokertracker obviously has built-in definitions for EP and MP that it uses in reporting results by position (https://www.pokertracker.com/guides/PT4 ... in-reports), so can anyone tell me how to implement those built-in definitions in a NoteTracker rule?
Thanks!

Re: NoteTracker rule using built-in EP/MP position definitio

PostPosted: Mon May 04, 2020 11:08 am
by Flag_Hippo
To do that within a single definition you would need to create the relevant filters (Number Of Players and Position) and then group them accordingly:

Guide: Grouping Filters

so for EP this would be:

((Players Dealt Into Hand Between 6 and 6) AND (Position of Active Player Position of Selected Exactly 3)) OR ((Players Dealt Into Hand Between 7 and 7) AND (Position of Active Player Position of Selected Exactly 4)) OR ((Players Dealt Into Hand Between 8 and 8) AND (Position of Active Player Position of Selected Between 4 and 5)) OR ((Players Dealt Into Hand Between 9 and 10) AND (Position of Active Player Position of Selected Between 5 and 7))

Re: NoteTracker rule using built-in EP/MP position definitio

PostPosted: Mon May 04, 2020 4:29 pm
by Dr_Freeze
Thanks. It's a little complicated, but I guess I only have to set it up once.