Percent Rank over a Moving Window
This function computes a running/rolling percentage rank.
runPercentRank(x, n = 260, cumulative = FALSE, exact.multiplier = 0.5)
x |
Object coercible to xts or matrix. |
n |
Number of periods to use in the window or, if
|
cumulative |
Logical, use from-inception calculation? |
exact.multiplier |
The weight applied to identical values in the window. Must be between 0 and 1, inclusive. See details. |
The computation for a percentage rank can vary depending on the weight given
to values in the window identical to the value being ranked. This weight can
be set using the exact.multiplier
argument which defaults to 0.5.
A object of percent ranks over a n-period moving window of the same
class as x
and y
or a vector (if try.xts
fails).
It may be important to note that this computation is different from the one used in Microsoft Excel's PERCENTRANK formula. Excel's computation is rather strange and gives inconsistent results as it uses interpolation to rank values that are not found within the lookback window.
Charlie Friedemann
The following site(s) were used to code/document this
indicator:
https://en.wikipedia.org/wiki/Percentile_rank
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.