Page 1 of 1

Continue / Fight Percentage

PostPosted: Sat Nov 16, 2024 12:20 am
by wallacedavidl
Hey, Team -

I'm seeking to create a statistic that shows the percentage of time someone continues in a hand against a Bet or Raise.

Thanks and respectfully,
David

Re: Continue / Fight Percentage

PostPosted: Sat Nov 16, 2024 4:15 pm
by wallacedavidl
And this is for the Flop, Turn and River...

Re: Continue / Fight Percentage

PostPosted: Sun Nov 17, 2024 7:52 am
by Flag_Hippo
The information required for that is in the default columns for these statistics:

Fold to F Bet
Fold to F 2Bet
Fold to F 3Bet
Fold to F 4Bet


There are turn and river versions of these also.

Adding 'Fold to F Bet' to 'Fold to F 2Bet' would look like this:

(cnt_f_bet_def_action_fold + cnt_f_2bet_def_action_fold / cnt_f_bet_def_opp + cnt_f_2bet_def_opp) * 100

but you need to do that for the columns from all 12 of those statistics:

(a + b + c + d and so on / w + x + y + z and so on) * 100

See this guide for the basics on custom statistics creation.

Re: Continue / Fight Percentage

PostPosted: Sun Nov 17, 2024 11:55 pm
by wallacedavidl
Thanks. It worked like a charm.

Re: Continue / Fight Percentage

PostPosted: Mon Nov 18, 2024 1:54 pm
by Flag_Hippo
Just to note that this would display how often a player would be folding rather than continuing but if you know they are folding 70% of the time then they must be continuing 30% of the time. If you want to see how often they call or raise then you can substract the result from 100:

Code: Select all
100 - (your current value expression)

but this will prevent times/opportunities for the stat being displayed since in order for those values to appear in tooltips the value expression for the statistic needs to be in the following format:

Code: Select all
(a / b) * 100

Re: Continue / Fight Percentage

PostPosted: Tue Nov 19, 2024 8:53 am
by wallacedavidl
Thanks. You can close this one out.

highfalutin