Discuss how to create custom stats, reports and HUD profiles and share your creations.
Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
by blicazord » Mon Apr 10, 2017 6:04 pm
Its possible to make this stat? fold to Cbet flop wen there is an A on board? fold to cbet flop wen the board are low then 7+? those kind of stats
-
blicazord
-
- Posts: 10
- Joined: Tue Sep 03, 2013 5:07 pm
by potamito » Mon Apr 10, 2017 10:03 pm
Yes¡!
-
potamito
-
- Posts: 802
- Joined: Wed Apr 21, 2010 4:20 pm
by Flag_Hippo » Tue Apr 11, 2017 6:38 am
There is some more information on that in
this thread. Also see
this guide for the basics on custom statistics creation and
this guide for a deeper walkthrough. The latter was written for PokerTracker 3 but the techniques all apply to PokerTracker 4, the interface is just slightly different.
-
Flag_Hippo
- Moderator
-
- Posts: 15487
- Joined: Tue Jan 31, 2012 7:50 am
by blicazord » Thu Apr 13, 2017 5:11 am
Many thanks..iam gone try to make the stat
![Very Happy :D](https://www.pokertracker.com/phpBB3-forums/images/smilies/icon_e_biggrin.gif)
-
blicazord
-
- Posts: 10
- Joined: Tue Sep 03, 2013 5:07 pm
by blicazord » Sun Apr 16, 2017 3:05 pm
to know if vilan cbet with Axx on flop sum(if[((cash_hand_summary.card_1 % 13 = 0) AND (cash_hand_summary.card_2 % 13 = 0) AND (cash_hand_summary.card_3 % 13 = 0))and cash_hand_player_statistics.flg_f_cbet, 1, 0]) ?? is this expression correct?
-
blicazord
-
- Posts: 10
- Joined: Tue Sep 03, 2013 5:07 pm
by Flag_Hippo » Mon Apr 17, 2017 7:41 am
Your testing for all three flop cards being an Ace so you need to use OR instead of AND.
-
Flag_Hippo
- Moderator
-
- Posts: 15487
- Joined: Tue Jan 31, 2012 7:50 am
by blicazord » Mon Apr 17, 2017 7:56 pm
changing to :sum(if[((cash_hand_summary.card_1 % 13 = 0) OR (cash_hand_summary.card_2 % 13 = 0) OR (cash_hand_summary.card_3 % 13 = 0))and cash_hand_player_statistics.flg_f_cbet, 1, 0]) i have what i need right? ANd fot example board with K or Q.. i have read some topics with but i still dont know the database numeric values to board cards.. only to the cards that we received
-
blicazord
-
- Posts: 10
- Joined: Tue Sep 03, 2013 5:07 pm
by Flag_Hippo » Tue Apr 18, 2017 6:58 am
blicazord wrote:changing to :sum(if[((cash_hand_summary.card_1 % 13 = 0) OR (cash_hand_summary.card_2 % 13 = 0) OR (cash_hand_summary.card_3 % 13 = 0))and cash_hand_player_statistics.flg_f_cbet, 1, 0]) i have what i need right? ANd fot example board with K or Q..
That's fine. If you want to test for a King on the flop you can use:
- Code: Select all
(cash_hand_summary.card_1 % 13 = 12) OR (cash_hand_summary.card_2 % 13 = 12) OR (cash_hand_summary.card_3 % 13 = 12)
11 for Queens e.t.c.
blicazord wrote:i have read some topics with but i still dont know the database numeric values to board cards.. only to the cards that we received
There is no difference in the card lookup values whether that is for your holecards or the board cards.
-
Flag_Hippo
- Moderator
-
- Posts: 15487
- Joined: Tue Jan 31, 2012 7:50 am
by blicazord » Thu Apr 20, 2017 5:58 pm
nice, and for example btwin x and y? (cash_hand_summary.card_1 % 13 = (x, y)??
-
blicazord
-
- Posts: 10
- Joined: Tue Sep 03, 2013 5:07 pm
by Flag_Hippo » Fri Apr 21, 2017 6:45 am
Yes you can do that. If your testing for the Ace being a high card then you can also subtract 1 from the card_x value before modulo'ing it
like this.
-
Flag_Hippo
- Moderator
-
- Posts: 15487
- Joined: Tue Jan 31, 2012 7:50 am
Return to Custom Stats, Reports and HUD Profiles
Users browsing this forum: No registered users and 15 guests