I have programmed a method I use to estimate the implied winchance from buying points in NFL games.
The Halfpoint calculator overestimates the importance of buying many points. This is because the favorite margin of victory, favMoV, is more likly to be close to the actual spread.
The halfpoint calc assumes that the push frequency for any favMoV is the same as the push frequency of the associated spread(which can be "measured"). (No news here)
The basic idea with my method is that I want to multiply the Push frequencies listed in the halfpoint calculator with a function(ranging from 1 to 0) that has lower value the further away from the actual spread of the game examined.
I currently use a normal distrubution function, divided with its value at the "expected value"=spread.
Newpushfreq=Oldpushfreq*normpdf(X,Spread ,Stdev)./normpdf(Spread,Spread,Stdev);
where Y = NORMPDF(X,MU,SIGMA) Returns the normal pdf with mean, MU, and standard deviation, SIGMA, at the values in X.
The standard deviation (Stdev) is fit numerically so that if you buy points from the current spread to "infinity" then you have a 100% winchance.
Does this approach make sense? Input is appriciated.
The Halfpoint calculator overestimates the importance of buying many points. This is because the favorite margin of victory, favMoV, is more likly to be close to the actual spread.
The halfpoint calc assumes that the push frequency for any favMoV is the same as the push frequency of the associated spread(which can be "measured"). (No news here)
The basic idea with my method is that I want to multiply the Push frequencies listed in the halfpoint calculator with a function(ranging from 1 to 0) that has lower value the further away from the actual spread of the game examined.
I currently use a normal distrubution function, divided with its value at the "expected value"=spread.
Newpushfreq=Oldpushfreq*normpdf(X,Spread ,Stdev)./normpdf(Spread,Spread,Stdev);
where Y = NORMPDF(X,MU,SIGMA) Returns the normal pdf with mean, MU, and standard deviation, SIGMA, at the values in X.
The standard deviation (Stdev) is fit numerically so that if you buy points from the current spread to "infinity" then you have a 100% winchance.
Does this approach make sense? Input is appriciated.