needed stats BB vs. SB

General discussion of PokerTracker 3.

Moderator: Moderators

needed stats BB vs. SB

Postby Mikulas58 » Fri Oct 19, 2012 7:50 am

Hi,

I am looking for two stats.
1. How often does BB call an all-in from SB
2. How often Push the SB all-in if another folded.
3. How often does the played limp w. premiumcards, like AA, KK, QQ, AK.

I found a description for "Hole card lookup values" but I am not good in programing. :roll:
https://www.pokertracker.com/forums/viewtopic.php?f=18&t=11876#p55492

best regards

Mikulas
Mikulas58
 
Posts: 16
Joined: Wed Nov 05, 2008 2:29 am

Re: needed stats BB vs. SB

Postby WhiteRider » Sat Oct 20, 2012 4:37 am

Are these for cash or tournaments?
Are they for heads up tables specifically, or blind vs blind at larger tables?
WhiteRider
Moderator
 
Posts: 54017
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Re: needed stats BB vs. SB

Postby Mikulas58 » Sun Oct 21, 2012 8:21 am

Thank you for your anwer.

Tournament, and fullring table, superturbo games.
Mikulas58
 
Posts: 16
Joined: Wed Nov 05, 2008 2:29 am

Re: needed stats BB vs. SB

Postby WhiteRider » Sun Oct 21, 2012 2:12 pm

1. Actually now that I think about it in more detail I don't think it will be possible to build #1. We can't tell from the BB's point of view that the SB went all-in.

2. Do you mean how often the SB raised all-in when everyone else has folded? (So an open-raise all-in from the SB?)

3. To build this, duplicate the columns used in the preflop limp stat and include a check for the appropriate hole cards.
For example:

cnt_p_limp_premium =
sum( if[holdem_hand_player_statistics.flg_p_limp AND (holdem_hand_player_statistics.id_holecard = 1 OR holdem_hand_player_statistics.id_holecard = 26 OR holdem_hand_player_statistics.id_holecard = 49 OR holdem_hand_player_statistics.id_holecard = 2 OR holdem_hand_player_statistics.id_holecard = 3), 1, 0] )

Tutorial: Custom Reports and Statistics
WhiteRider
Moderator
 
Posts: 54017
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Re: needed stats BB vs. SB

Postby pasita » Sun Oct 21, 2012 4:10 pm

WhiteRider wrote:1. Actually now that I think about it in more detail I don't think it will be possible to build #1. We can't tell from the BB's point of view that the SB went all-in.

amt_f_bet_facing = 0 AND amt_f_bet_made = 0 AND NOT flg_f_check (assuming that we're talking about a 2-way preflop all in from SB)?
pasita
 
Posts: 605
Joined: Tue May 06, 2008 4:05 pm

Re: needed stats BB vs. SB

Postby WhiteRider » Mon Oct 22, 2012 3:13 am

The problem comes in knowing when we face an all-in from the SB preflop (but do not call). It may be possible using 3bet opportunities - I will experiment.
WhiteRider
Moderator
 
Posts: 54017
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Re: needed stats BB vs. SB

Postby Mikulas58 » Mon Oct 22, 2012 3:44 am

2. Do you mean how often the SB raised all-in when everyone else has folded? (So an open-raise all-in from the SB?)

Yes, in superturbo, SBs go almost 100% all-in, if everyone else has folded (it depends on Blinds as well, tho). Good player do it, but not every player.
Mikulas58
 
Posts: 16
Joined: Wed Nov 05, 2008 2:29 am

Re: needed stats BB vs. SB

Postby Mikulas58 » Mon Oct 22, 2012 5:34 am

WhiteRider wrote:
cnt_p_limp_premium =
sum( if[holdem_hand_player_statistics.flg_p_limp AND (holdem_hand_player_statistics.id_holecard = 1 OR holdem_hand_player_statistics.id_holecard = 26 OR holdem_hand_player_statistics.id_holecard = 49 OR holdem_hand_player_statistics.id_holecard = 2 OR holdem_hand_player_statistics.id_holecard = 3), 1, 0] )



"cnt_p_limp_premium" doesn't give a number, neither 0 nor N/A.
Mikulas58
 
Posts: 16
Joined: Wed Nov 05, 2008 2:29 am

Re: needed stats BB vs. SB

Postby WhiteRider » Mon Oct 22, 2012 8:35 am

Apologies - after asking whether it was for cash or tournaments I gave you the cash version. :oops:

For tournaments you need this:
sum( if[tourney_holdem_hand_player_statistics.flg_p_limp AND (tourney_holdem_hand_player_statistics.id_holecard = 1 OR tourney_holdem_hand_player_statistics.id_holecard = 26 OR tourney_holdem_hand_player_statistics.id_holecard = 49 OR tourney_holdem_hand_player_statistics.id_holecard = 2 OR tourney_holdem_hand_player_statistics.id_holecard = 3), 1, 0] )

The stat is attached:

Preflop Limp% Premium.zip
(650 Bytes) Downloaded 68 times


Mikulas58 wrote:
2. Do you mean how often the SB raised all-in when everyone else has folded? (So an open-raise all-in from the SB?)

Yes, in superturbo, SBs go almost 100% all-in, if everyone else has folded (it depends on Blinds as well, tho). Good player do it, but not every player.

This stat is also attached.

RFI All-In.zip
(636 Bytes) Downloaded 66 times

I have not specified the small blind in this stat so that you can use it for any position.
If you want it specifically for the small blind then set the Hud Property "Position" to "Blinds". This situation doesn't apply to the BB (you can't raise-first-in from the BB) so "Blinds" will mean only the SB in this case.
WhiteRider
Moderator
 
Posts: 54017
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Re: needed stats BB vs. SB

Postby pasita » Mon Oct 22, 2012 8:29 pm

WhiteRider wrote:1. Actually now that I think about it in more detail I don't think it will be possible to build #1. We can't tell from the BB's point of view that the SB went all-in.



enum_face_allin combined with the last aggressor position, or the actors string? If not, I give up and stick to FL :)

EDIT: whooa, didn't realize this was PT3. Forget about the strings, imo.
pasita
 
Posts: 605
Joined: Tue May 06, 2008 4:05 pm

Next

Return to General [Read Only]

Who is online

Users browsing this forum: No registered users and 22 guests

cron