hloc {splusTimeSeries} | R Documentation |
High, Low, Open, and Close Calculation
Description
Calculates the high, low, first, and last elements of a vector.
Especially useful for financial trading data in conjunction with
the aggregateSeries
function.
Usage
hloc(x)
Arguments
x |
a vector for which to calculate high, low, open, and close. |
Value
returns a vector with four elements:
high |
the maximum value in |
low |
the minimum value in |
open |
the first value of |
close |
the last value of |
x
can be an array, but dimensions are ignored.
See Also
Examples
x <- c(5, 2, 3, 6, 3, 2, 1, 7, 1)
hloc(x)
[Package splusTimeSeries version 1.5.7 Index]