Click or drag to resize
HighLowClose Constructor (AxisXY, DateTime, Double, Double, Double, Double)
Constructs a high-low-close-open chart node beginning with specified start date.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public HighLowClose(
	AxisXY axis,
	DateTime start,
	double[] high,
	double[] low,
	double[] close,
	double[] open
)

Parameters

axis
Type: Imsl.Chart2DAxisXY
An Axis specifying the parent of this node.
start
Type: SystemDateTime
A DateTime which specifies the first date.
high
Type: SystemDouble
A double[] which contains the stock's high prices.
low
Type: SystemDouble
A double[] which contains the stock's low prices.
close
Type: SystemDouble
A double[] which contains the stock's closing prices.
open
Type: SystemDouble
A double[] which contains the stock's opening prices.
Remarks
The high, low, close and open are used to specify the respective attributes. That is, "high", "low", "close" and "open".
See Also