splusTimeSeries (version 1.5.5)

hloc: 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)

Value

returns a vector with four elements:

high

the maximum value in x.

low

the minimum value in x.

open

the first value of x.

close

the last value of x.

x can be an array, but dimensions are ignored.

Arguments

x

a vector for which to calculate high, low, open, and close.

See Also

aggregateSeries.

Examples

Run this code
x <- c(5, 2, 3, 6, 3, 2, 1, 7, 1) 
hloc(x) 

Run the code above in your browser using DataLab