Page 1 of 1

All in preflop stats

PostPosted: Wed Aug 24, 2016 9:57 am
by kingreigns
So im looking to make these for HU. The positions i can adjust when in a HUD itself.
SB open shove all in
BB 3bet all in
BB 2bet all in (shove over limp)

SB open shove all in:
(cnt_preflop_raise_all_in / cnt_hands) * 100
sum(if[cash_hand_player_statistics.amt_p_raise_made /_____________ , 1, 0]) .....................so im not sure what should be here at the line. Or what you add to the first part to make it all in.

BB 3bet all in
(cnt_p_3bet_all_in / cnt_p_3bet_opp) * 100
sum(if[cash_hand_player_statistics.flg_p_3bet, 1, 0]) --------------------- what do i add to this to make it all in?

Re: All in preflop stats

PostPosted: Wed Aug 24, 2016 10:02 am
by kraada
A raise is all in if and only if: cash_hand_player_statistics.amt_p_raise_made >= cash_hand_player_statistics.amt_p_effective_stack -- this is true if it's a 2bet or 3bet if it's your first raise in the hand.

Re: All in preflop stats

PostPosted: Wed Aug 24, 2016 2:46 pm
by kingreigns
Cool thats sweet.
What about this for 3bet all in:

(cnt_p_3bet_all_in / cnt_p_3bet_opp) * 100
sum(if[cash_hand_player_statistics.flg_p_3bet AND cash_hand_player_statistics.amt_p_raise_made >= cash_hand_player_statistics.amt_p_effective_stack, 1, 0])

Re: All in preflop stats

PostPosted: Wed Aug 24, 2016 3:12 pm
by kingreigns
(cnt_preflop_raise_all_in / cnt_hands) * 100

This is not working properly, it counted a hand it shouldnt have when i was checking it. Heres what i have

sum(if[cash_hand_player_statistics.amt_p_raise_made >= cash_hand_player_statistics.amt_p_effective_stack, 1, 0])

Re: All in preflop stats

PostPosted: Wed Aug 24, 2016 3:47 pm
by kraada
Can you post the hand that counted but should not have?

Re: All in preflop stats

PostPosted: Wed Aug 24, 2016 4:19 pm
by kingreigns
Winning Poker Network (Yatahay) - $0.25 NL (2 max) - Holdem - 2 players
Hand converted by PokerTracker 4

BB: $6.28 (VPIP: 40.00, PFR: 0.00, 3Bet Preflop: 0.00, Hands: 10)
Hero (SB): $32.95

Hero posts SB $0.10, BB posts BB $0.25

Pre Flop: (pot: $0.35) Hero has 3:spade: 8:diamond:

fold

BB wins $0.20

Re: All in preflop stats

PostPosted: Wed Aug 24, 2016 4:27 pm
by kraada
Oh, of course. You want to also make sure you did raise -- 0 = 0 :)

Re: All in preflop stats

PostPosted: Thu Aug 25, 2016 4:53 am
by kingreigns
So how do i correct this?

Re: All in preflop stats

PostPosted: Thu Aug 25, 2016 7:29 am
by kraada
This will do it:
sum(if[cash_hand_player_statistics.amt_p_raise_made >= cash_hand_player_statistics.amt_p_effective_stack and cash_hand_player_statistics.cnt_p_raise > 0, 1, 0])