Postional stat values

Questions and discussion about PokerTracker 4 for Windows

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Postional stat values

Postby vankammen » Mon Mar 28, 2016 2:21 pm

Hi,

Why does: tourney_hand_summary.str_aggressors_p NOT LIKE '89%' represent Late Postion ? I tought that the % could be empty or any string. Therefor i thought this expression would
result in any position except the blinds.

i had this:

tourney_hand_summary.str_aggressors_p = 1 OR tourney_hand_summary.str_aggressors_p =1 (for late position players, b and co)
vankammen
 
Posts: 37
Joined: Fri Sep 18, 2015 6:19 am

Re: Postional stat values

Postby kraada » Mon Mar 28, 2016 3:52 pm

[Mod EDIT] It looks as if kraada missed the 'NOT'. This expression means that the first raiser was NOT the small blind, so was therefore late position because we're testing for a steal not from the small blind.

tourney_hand_summary.str_aggressors_p NOT LIKE '89%' means that the first aggressor in the hand was the small blind - where are you getting that it has anything to do with late position?

tourney_hand_summary.str_aggressors_p = 1 will always be false - the string always starts with 8 as the first aggressor is always the big blind.
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: Postional stat values

Postby vankammen » Mon Mar 28, 2016 4:14 pm

found it here:

https://na2.pokertracker.com/forums/vie ... 1&p=284057

so for LP aggressors it should be:

tourney_hand_summary.str_aggressors_p = '81' OR tourney_hand_summary.str_aggressors_p ='80'

Right?

I have now this for all possible lp min raises (raise smaller then 2.5 times the bb) when the raiser has between 11 and 30 big blinds:

Code: Select all
sum(if[tourney_hand_player_statistics.flg_blind_def_opp AND

( tourney_hand_summary.str_aggressors_p = '80' OR tourney_hand_summary.str_aggressors_p = '81')  AND


((tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 11 AND 30)

 AND


(      ( tourney_hand_player_statistics.position =8 AND tourney_hand_player_statistics.amt_p_2bet_facing < tourney_blinds.amt_bb*1.5 ) OR
 ( tourney_hand_player_statistics.position =9 AND tourney_hand_player_statistics.amt_p_2bet_facing < tourney_blinds.amt_bb*2.0 ) )



, 1, 0])



And this for every time the player in the blinds folds to such a raise:

Code: Select all
sum(if[tourney_hand_player_statistics.flg_blind_def_opp AND lookup_actions_p.action = 'F' AND

( tourney_hand_summary.str_aggressors_p = '80' OR tourney_hand_summary.str_aggressors_p = '81')  AND





((tourney_hand_player_statistics.amt_p_effective_stack / tourney_blinds.amt_bb) BETWEEN 11 AND 30)

AND

(      ( tourney_hand_player_statistics.position =8 AND tourney_hand_player_statistics.amt_p_2bet_facing < tourney_blinds.amt_bb*1.5 ) OR
 ( tourney_hand_player_statistics.position =9 AND tourney_hand_player_statistics.amt_p_2bet_facing < tourney_blinds.amt_bb*2.0 ) )



, 1, 0])


Is this correct?
vankammen
 
Posts: 37
Joined: Fri Sep 18, 2015 6:19 am

Re: Postional stat values

Postby WhiteRider » Tue Mar 29, 2016 3:07 am

You're close, but you'll need to use "LIKE" instead of equals when checking the start of the aggressors strings otherwise it will not count hands where the blinds re-raise:

tourney_hand_summary.str_aggressors_p LIKE '81%' OR tourney_hand_summary.str_aggressors_p LIKE '80%'

..but otherwise your expressions look OK.
WhiteRider
Moderator
 
Posts: 54018
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Re: Postional stat values

Postby vankammen » Tue Mar 29, 2016 6:41 am

WhiteRider wrote:You're close, but you'll need to use "LIKE" instead of equals when checking the start of the aggressors strings otherwise it will not count hands where the blinds re-raise:

tourney_hand_summary.str_aggressors_p LIKE '81%' OR tourney_hand_summary.str_aggressors_p LIKE '80%'

..but otherwise your expressions look OK.


Thanks. But i do not fully understand it yet. I want to count all the times the blinds fold to a LP min raise. So why do i need to count the hands where the blinds re-raise?

The first code just counts all the hands where the blinds face a CO or B minraise. The second piece counts all the times that the sb or bb calls such a raise. It is not clear to me why i need to
count the hands where the blinds reraise. Could you please clarify this for me? :)
vankammen
 
Posts: 37
Joined: Fri Sep 18, 2015 6:19 am

Re: Postional stat values

Postby kraada » Tue Mar 29, 2016 7:19 am

You want hands where the blinds do reraise to be part of the opportunity sample - it's fine for the folding side, but if you exclude 3bets from the opportunity you're going to think people are folding more than they actually are because you're only counting folds / (folds + calls) instead of folds / (folds + calls + raises).
kraada
Moderator
 
Posts: 54431
Joined: Wed Mar 05, 2008 2:32 am
Location: NY

Re: Postional stat values

Postby vankammen » Tue Mar 29, 2016 8:04 am

check. thanks guys!
vankammen
 
Posts: 37
Joined: Fri Sep 18, 2015 6:19 am

Re: Postional stat values

Postby alexrjl » Sat Dec 17, 2016 1:39 pm

kraada wrote:tourney_hand_summary.str_aggressors_p NOT LIKE '89%' means that the first aggressor in the hand was the small blind - where are you getting that it has anything to do with late position?

tourney_hand_summary.str_aggressors_p = 1 will always be false - the string always starts with 8 as the first aggressor is always the big blind.


Why is the (built in) column for 3bet opportunity versus late position open like this then?
cnt_steal_def_3bet_opp_vs_lp
sum(if[tourney_hand_player_statistics.flg_blind_def_opp and tourney_hand_summary.str_aggressors_p NOT LIKE '89%' AND tourney_hand_player_statistics.flg_p_3bet_opp, 1, 0])

Does this mean this is actually wrong and it's counting 3bet opportunities versus a SB raise?
alexrjl
 
Posts: 8
Joined: Thu May 28, 2015 4:09 pm

Re: Postional stat values

Postby WhiteRider » Sat Dec 17, 2016 2:56 pm

tourney_hand_summary.str_aggressors_p NOT LIKE '89%'

..means that the 2bet was NOT by the small blind, and since the player faced a steal it must therefore have come from either the cutoff or button.
WhiteRider
Moderator
 
Posts: 54018
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Re: Postional stat values

Postby alexrjl » Sun Dec 18, 2016 6:53 am

WhiteRider wrote:tourney_hand_summary.str_aggressors_p NOT LIKE '89%'

..means that the 2bet was NOT by the small blind, and since the player faced a steal it must therefore have come from either the cutoff or button.


that's what I thought, which I think means kraada's above post is incorrect (looks like he missed the NOT)
alexrjl
 
Posts: 8
Joined: Thu May 28, 2015 4:09 pm

Next

Return to PokerTracker 4

Who is online

Users browsing this forum: No registered users and 103 guests

cron
highfalutin