Defining holecards in stats

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Defining holecards in stats

Postby tacinho » Tue Mar 07, 2017 1:52 pm

Hello,

I would like to check the flop cbet on any Ax flop.
I used as reference the stats for paired flop created by kraada and these topics:
https://www.pokertracker.com/forums/vie ... 18&t=11876
https://www.pokertracker.com/forums/vie ... 5&start=10

My code looks like (please check if correct):
Code: Select all
sum(if[tourney_hand_player_statistics.flg_f_cbet AND ((tourney_hand_summary.card_1 % 13 = 0) OR (tourney_hand_summary.card_2 % 13 = 0) OR (tourney_hand_summary.card_3 % 13 = 0)), 1, 0])


If I understand correctly
Code: Select all
tourney_hand_summary.card_1 % 13 = 0
counts all Ax, but I can use these values too Ac=13 / Ad=26 / Ah=39 / As=52 ? If yes, how can I define all cards I want to count without repeating the code ( wit "," , ";" "or" etc)

Code: Select all
tourney_hand_summary.card_1 % 13 = 13 , 26 , 39 , 52
for example or something else?

Thank You!
tacinho
 
Posts: 27
Joined: Sun Sep 06, 2015 12:06 pm

Re: Defining holecards in stats

Postby potamito » Tue Mar 07, 2017 5:33 pm

IF you´re looking to build a Check Flop on Ace High Boards as PFR custom stat you would need something like this...

Code: Select all
sum(if[tourney_hand_player_statistics.flg_f_cbet_opp and lookup_actions_p.action LIKE 'X% 'AND ((tourney_hand_summary.card_1 % 13 = 0) OR (tourney_hand_summary.card_2 % 13 = 0) OR (tourney_hand_summary.card_3 % 13 = 0)), 1, 0])
potamito
 
Posts: 802
Joined: Wed Apr 21, 2010 4:20 pm


Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: No registered users and 28 guests

cron