board definition

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

board definition

Postby justforfun » Tue Dec 13, 2016 8:23 pm

Can somebody pls advise me how to define a 7high board (e.g 2s,5h,7h) and Ahigh board (e.g AcTd6s)?
justforfun
 
Posts: 116
Joined: Fri Dec 14, 2012 4:20 pm

Re: board definition

Postby potamito » Tue Dec 13, 2016 10:28 pm

This thread has the info you´re looking for...

https://www.pokertracker.com/forums/vie ... rd#p333246

If you want a shortcut and have the money i strongly advice you to check the "Flop Texture Pack" from the guys of propokerhuds

http://www.pokerhuds.com/stat-packs/#flop-texture
potamito
 
Posts: 802
Joined: Wed Apr 21, 2010 4:20 pm

Re: board definition

Postby justforfun » Wed Dec 14, 2016 4:04 pm

thanks potamito.
I already have purchased the flop textures pack from pokerhuds and i like thats, however they differentiate only between dry and wet boards (+mono, suited and paired) but these 2 boards im missing there and i found them quite usefull.
I read the recommnended articles and I construct following for the Ahigh board:

num:
sum(if[(((cash_hand_summary.card_1 % 13 = 13) or (cash_hand_summary.card_2 % 13 = 13) or (cash_hand_summary.card_3 % 13 = 13)) or ((cash_hand_summary.card_1 % 26 = 26) or (cash_hand_summary.card_2 % 26 = 26) or (cash_hand_summary.card_3 % 26 = 26)) or ((cash_hand_summary.card_1 % 39 = 39) or (cash_hand_summary.card_2 % 39 = 39) or (cash_hand_summary.card_3 % 39 = 39)) or ((cash_hand_summary.card_1 % 52 = 52) or (cash_hand_summary.card_2 % 52 = 52) or (cash_hand_summary.card_3 % 52 = 52))) and cash_hand_player_statistics.flg_f_cbet, 1, 0])

but that give me no result, am I missing something?
justforfun
 
Posts: 116
Joined: Fri Dec 14, 2012 4:20 pm

Re: board definition

Postby potamito » Wed Dec 14, 2016 4:37 pm

try changing OR for AND in between cash_hand_summary.card_1, cash_hand_summary.card_2 and cash_hand_summary.card_3
potamito
 
Posts: 802
Joined: Wed Apr 21, 2010 4:20 pm

Re: board definition

Postby justforfun » Wed Dec 14, 2016 5:00 pm

Hi potamito

So i have changed it as suggested but still no result (it gave me 0/0)

sum(if[(((cash_hand_summary.card_1 % 13 = 13) and (cash_hand_summary.card_2 % 13 = 13) and (cash_hand_summary.card_3 % 13 = 13)) or ((cash_hand_summary.card_1 % 26 = 26) and (cash_hand_summary.card_2 % 26 = 26) and (cash_hand_summary.card_3 % 26 = 26)) or ((cash_hand_summary.card_1 % 39 = 39) and (cash_hand_summary.card_2 % 39 = 39) and (cash_hand_summary.card_3 % 39 = 39)) or ((cash_hand_summary.card_1 % 52 = 52) and (cash_hand_summary.card_2 % 52 = 52) and (cash_hand_summary.card_3 % 52 = 52))) and cash_hand_player_statistics.flg_f_cbet, 1, 0])
justforfun
 
Posts: 116
Joined: Fri Dec 14, 2012 4:20 pm

Re: board definition

Postby BillGatesIII » Wed Dec 14, 2016 7:08 pm

    This is an A high flop.
    Code: Select all
    (cash_hand_summary.card_1 % 13 = 0) or (cash_hand_summary.card_2 % 13 = 0) or (cash_hand_summary.card_3 % 13 = 0)

    So cbetting an A high flop looks something like this.
    Code: Select all
    sum(if[cash_hand_player_statistics.flg_f_cbet
    and ((cash_hand_summary.card_1 % 13 = 0) or (cash_hand_summary.card_2 % 13 = 0) or (cash_hand_summary.card_3 % 13 = 0)), 1, 0])
    BillGatesIII
     
    Posts: 740
    Joined: Fri Dec 16, 2011 6:50 pm

    Re: board definition

    Postby justforfun » Thu Dec 15, 2016 6:53 pm

    Thanks guys!!
    justforfun
     
    Posts: 116
    Joined: Fri Dec 14, 2012 4:20 pm

    Re: board definition

    Postby potamito » Thu Feb 23, 2017 10:13 pm

    BillGatesIII wrote:
      This is an A high flop.
      Code: Select all
      (cash_hand_summary.card_1 % 13 = 0) or (cash_hand_summary.card_2 % 13 = 0) or (cash_hand_summary.card_3 % 13 = 0)

      So cbetting an A high flop looks something like this.
      Code: Select all
      sum(if[cash_hand_player_statistics.flg_f_cbet
      and ((cash_hand_summary.card_1 % 13 = 0) or (cash_hand_summary.card_2 % 13 = 0) or (cash_hand_summary.card_3 % 13 = 0)), 1, 0])

      So if i wanted to make a variation of this for like T high flops it would be...

      Code: Select all
      (cash_hand_summary.card_1 % 9 = 0) or (cash_hand_summary.card_2 % 9 = 0) or (cash_hand_summary.card_3 % 9 = 0)
      potamito
       
      Posts: 802
      Joined: Wed Apr 21, 2010 4:20 pm

      Re: board definition

      Postby BillGatesIII » Fri Feb 24, 2017 4:17 am

        Ten high would be like this.

        Code: Select all
        sum(if[cash_hand_player_statistics.flg_f_cbet
        and ((cash_hand_summary.card_1 % 13 = 9) or (cash_hand_summary.card_2 % 13 = 9) or (cash_hand_summary.card_3 % 13 = 9)), 1, 0])

        Because there are 4 times 13 cards in a normal card deck and the four suits do not matter in this case, you can use % (pronounced modulo) to get rid of the suits.

        To put it another way, instead of saying

        card is ten of clubs or card is ten of diamonds or card is ten of hearts or card is ten of spades

        you just say

        card is a ten

        Hope this makes sense :)
        BillGatesIII
         
        Posts: 740
        Joined: Fri Dec 16, 2011 6:50 pm

        Re: board definition

        Postby potamito » Sun Mar 12, 2017 12:55 pm

        for some reason when i write Q or higher board Ace high are not taking into account maybe because Aces are = and Queens are 11? do i need to add a seperate expression to include ace high boards?
        potamito
         
        Posts: 802
        Joined: Wed Apr 21, 2010 4:20 pm

        Next

        Return to Custom Stats, Reports and HUD Profiles

        Who is online

        Users browsing this forum: No registered users and 46 guests

        cron
        highfalutin