Hijack + Lowjack RFI

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

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Hijack + Lowjack RFI

Postby Mightyork » Sun May 30, 2021 12:15 am

Hi! I want to build a stat that shows raise first in percentage for Hijack and Lowjack combined.

Is this what I should be doing?

Code: Select all
sum(if[tourney_hand_player_statistics.flg_p_first_raise AND tourney_hand_player_statistics.flg_p_open_opp AND tourney_hand_player_statistics.position = 2+3, 1, 0])


If I write only "2" that should be the Hijack, but does "2+3" mean it considers Hijack and Lowjack together?

Second question: how many positions do EP and MP inlcude on a full ring table in PT4? On 6-max it's simple because MP = HJ and EP = UTG, but what about full ring?

Thanks guys! :D
Mightyork
 
Posts: 8
Joined: Sat Apr 28, 2018 4:43 pm

Re: Hijack + Lowjack RFI

Postby WhiteRider » Sun May 30, 2021 4:19 am

Testing for "position=2+3" will test for position=5, so you will need to do it like this intead:

..AND (tourney_hand_player_statistics.position = 2 OR AND tourney_hand_player_statistics.position = 3)

Alternatively you could use:

..AND tourney_hand_player_statistics.position BETWEEN 2 AND 3

(which would be useful if you wanted to check for more consecutive numbers, for example.)

--

You can see the number of EP and MP positions for each table size in this tutorial.
WhiteRider
Moderator
 
Posts: 53961
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK


Return to Custom Stats, Reports and HUD Profiles

Who is online

Users browsing this forum: Taroxus and 24 guests

cron
highfalutin