Page 1 of 1

Modified Stats

PostPosted: Thu May 17, 2012 5:35 am
by kingkong32
Hi,
I want to modify some stats and need some help (I only need the stats for Heads Up):
- Fold to 3bet to t60-t150: I want to use the existing stat “Fold to 3Bet” and add a condition that the 3bet was between t60 and t150
- Bet flop in limped pots: I want to add a condition, that the pot was unraised preflop to the existing “Bet Flop”
Could you give me the right impressions?
Thanks,
Tim

Re: Modified Stats

PostPosted: Thu May 17, 2012 8:07 am
by kraada
For the first stat you want to duplicate both columns used in the Value Expression of Fold to PF 3Bet and add:

tourney_holdem_blinds.amt_bb BETWEEN 60 and 150 AND

right after sum(if[

so that it ends up like: sum(if[tourney_holdem_blinds ... AND [the rest of the statement].

For the latter, duplicate Bet Flop and add the following to the expressions in the same place:

tourney_holdem_hand_player_statistics.cnt_p_raise = 0 AND not(tourney_holdem_hand_player_statistics.flg_p_face_raise) AND

Re: Modified Stats

PostPosted: Thu May 17, 2012 8:54 am
by kingkong32
Ok thanks.
For the first one, we had a misunderstanding. I didn’t mean the blind amount. Instead I meant the 3bet size of t60-t150. Could you give me the right expression for this?

Re: Modified Stats

PostPosted: Thu May 17, 2012 9:54 am
by kraada
Ah, I see. In that case you want:

holdem_hand_player_statistics.flg_p_3bet AND holdem_hand_player_detail.amt_p_raise_made BETWEEN 60 and 150 AND