Page 1 of 1

Hijack + Lowjack RFI

PostPosted: Sun May 30, 2021 12:15 am
by Mightyork
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

Re: Hijack + Lowjack RFI

PostPosted: Sun May 30, 2021 4:19 am
by WhiteRider
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.

highfalutin