Page 1 of 1

All in stats

PostPosted: Sun May 08, 2011 2:43 pm
by stuart_gall
Hello,
Is it possible to create a stat for the percentage of times a player is all-in for each street ?

TIA
Stuart

Re: All in stats

PostPosted: Sun May 08, 2011 3:38 pm
by WhiteRider
Yes - have a look at this thread.
_p_ is for preflop, you can also use _f_ for flop, _t_ for turn and _r_ for river.

Re: All in stats

PostPosted: Mon May 09, 2011 4:00 pm
by stuart_gall
OK - that basically worked.

all in pre I made cnt_p_shove / cnt_hands * 100
But
all in flop I made cnt_f_shove / cnt_f_saw * 100 which is more usefull to me.
and so on cnt_t_shove / cnt_t_saw * 100

On the hud I add the statistics, and I set "show times / opportunites" true.
This works for the preflop stat, but I just get things like "3% ()" on flop,turn and river.

Any Ideas ?

Re: All in stats

PostPosted: Mon May 09, 2011 4:24 pm
by kraada
It needs to be formatted exactly like this:
(cnt_f_shove / cnt_f_saw) * 100

Then it will work.