Page 1 of 1
Faced 2-3bb raise stat
Posted:
Tue Feb 12, 2013 4:43 am
by nyjedsazi
hello
how to add a "Faced 2-3bb raise" condition for stat.
and condition for size of stack in bb? for example >5bb
thank you
Re: Faced 2-3bb raise stat
Posted:
Tue Feb 12, 2013 7:27 am
by nyjedsazi
And one more question.
sum(if[tourney_holdem_hand_player_statistics.flg_p_3bet AND (tourney_holdem_hand_player_detail.amt_p_raise_made BETWEEN tourney_holdem_blinds.amt_bb * 4 AND tourney_holdem_blinds.amt_bb * 6), 1, 0])
my stat for 3bet by 4-6bb
if opp raises 2bb and hero 3bets to 4bb will this stat work? or 4-6bb is a size of raise (2bb for that example) ?
Re: Faced 2-3bb raise stat
Posted:
Tue Feb 12, 2013 8:31 am
by nyjedsazi
And one more.
This stat "sum( if[tourney_holdem_hand_player_statistics.flg_p_first_raise AND tourney_holdem_hand_player_statistics.flg_p_open_opp, 1, 0])"
in HU when sb limps and hero on bb raises returns 1 or 0 ?
Re: Faced 2-3bb raise stat
Posted:
Tue Feb 12, 2013 9:41 am
by kraada
To test for facing a 2-3bb raise you'd need to test for:
tourney_holdem_hand_player_detail.amt_p_raise_facing between tourney_holdem_blinds.amt_bb * 2 and tourney_holdem_blinds.amt_bb * 3
Note though that if you face a second preflop raise though this data will be overwritten (we only store the size of the last raise you faced preflop in PT3; this is rectified in PT4).
Yes, that is a 4-6BB 3bet. It's to what the total raise was made to - so if someone else opens for 4BB it's going to be impossible for this stat to trigger (from 1 to 4 is a raise of 3 so the next valid raise would be at least 3 more or to 7, which is more than 6).
And finally that stat will return 0 in that situation - when the BB raises of the limp it is a first raise, but it is not an open opportunity for him as the btn already opened the pot (with a limp).
Re: Faced 2-3bb raise stat
Posted:
Tue Feb 12, 2013 10:03 am
by nyjedsazi
Thank you.
"tourney_holdem_hand_player_statistics.flg_blind_def_opp" when returns 1 ?
does it return 1 if we can't 3bet raise. only fold or call. because of stack sizes.
does it return 1 if we face only limp?
Re: Faced 2-3bb raise stat
Posted:
Tue Feb 12, 2013 12:21 pm
by kraada
That flag is true when you are facing an open raise from the cutoff, button or the small blind when you are in a blind. If anybody limped in the hand, or the initial raise was called before it was your action, it is false.
Re: Faced 2-3bb raise stat
Posted:
Thu Feb 14, 2013 3:18 am
by nyjedsazi
ty
and how to make a "raise limp" stat
im making stats for hu, therefore it's not so important that it will work with 3max+
i dind't find it
and think about "meets limp" + "do a raise"
Re: Faced 2-3bb raise stat
Posted:
Thu Feb 14, 2013 4:28 am
by WhiteRider
There is a built-in stat for "raise limp" - it is called RWPC (Raise With Previous Callers).
Re: Faced 2-3bb raise stat
Posted:
Thu Feb 14, 2013 7:42 am
by nyjedsazi
ty