I made a decision to do it that way (for display purposes only in the PPs Generator) when Jim explained the thought process behind his figure making methodology back when I was making the switch to HDW in 2009/2010.
If a horse slows down enough in the final 3/8ths, its HDW Late Pace Fig (also known as F3) for that running line can be zero or even a negative number.
In cases where there isn't enough data (for example a marathon or otherwise seldom run distance with an unusually fast or slow pace) Jim might decide the best decision is to not award a Late Pace Fig at all - as opposed to giving the horse a number with a high likelihood of being bad.
Below is a cut and paste from my source code that displays HDW F3 Late Pace for the current running line in the PPs Generator:
'816-825 BRIS/HDW Late Pace Fig strReturnValue = i(r + 815) If Val(strReturnValue) > 0 Then strReturnValue = Format(strReturnValue, "###") Else strReturnValue = "na" End If
Note that r is the number representing each running line. For the most recent running line back, r=1. For the second running line back, r=2. For the third, r=3, etc.
If the F3 for a running line is not greater than zero:
F3 displayed for that running line is "na" (without the quotes.)
And that means one of three cases:
1. The horse was awarded a negative Late Pace Fig.
2. The horse was awarded a Late Pace Fig = 0.
3. The horse wasn't awarded a Late Pace Fig at all.
Suggestions:
• When you see "na" you could key a zero into your app.
If that doesn't work and you need the actual negative number:
• Parse it from field #'s '816-825 in the .JCP file.
Also, whenever a horse is awarded a Late Pace Fig greater than zero:
It gets displayed. There shouldn't be any cases where a positive number is displayed as "na" (without the quotes.)
-jp .
~Edited by: jeff on: 6/12/2025 at: 6:12:27 PM~
|