IMSL C# Numerical Library

HighLowClose Constructor (AxisXY, Double[], Double[], Double[], Double[], Double[])

Constructs a high-low-close-open chart node beginning with specified start date.

public HighLowClose(
   AxisXY axis,
   double[] x,
   double[] high,
   double[] low,
   double[] close,
   double[] open
);

Parameters

axis
An
Axis
specifying the parent of this node.
x
A
double
array which contains the axis points.
high
A double[] which contains the stock's high prices.
low
A double[] which contains the stock's low prices.
close
A double[] which contains the stock's closing prices.
open
A double[] which contains the stock's opening prices.

Remarks

The X, high, low and close and open are used to specify the respective attributes. That is, "X", "high", "low", "close" and "open".

See Also

HighLowClose Class | Imsl.Chart2D Namespace | HighLowClose Constructor Overload List