Page 1 of 2

needed stats BB vs. SB

PostPosted: Fri Oct 19, 2012 7:50 am
by Mikulas58
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

Re: needed stats BB vs. SB

PostPosted: Sat Oct 20, 2012 4:37 am
by WhiteRider
Are these for cash or tournaments?
Are they for heads up tables specifically, or blind vs blind at larger tables?

Re: needed stats BB vs. SB

PostPosted: Sun Oct 21, 2012 8:21 am
by Mikulas58
Thank you for your anwer.

Tournament, and fullring table, superturbo games.

Re: needed stats BB vs. SB

PostPosted: Sun Oct 21, 2012 2:12 pm
by WhiteRider
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

Re: needed stats BB vs. SB

PostPosted: Sun Oct 21, 2012 4:10 pm
by pasita
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)?

Re: needed stats BB vs. SB

PostPosted: Mon Oct 22, 2012 3:13 am
by WhiteRider
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.

Re: needed stats BB vs. SB

PostPosted: Mon Oct 22, 2012 3:44 am
by Mikulas58
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.

Re: needed stats BB vs. SB

PostPosted: Mon Oct 22, 2012 5:34 am
by Mikulas58
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.

Re: needed stats BB vs. SB

PostPosted: Mon Oct 22, 2012 8:35 am
by WhiteRider
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.

Re: needed stats BB vs. SB

PostPosted: Mon Oct 22, 2012 8:29 pm
by pasita
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.

highfalutin