Click or drag to resize
Candlestick Constructor (AxisXY, Double, Double, Double, Double, Double)
Constructs a candlestick chart node beginning with specified axis points.

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

Parameters

axis
Type: Imsl.Chart2DAxisXY
An AxisXY which is the parent of this node.
x
Type: SystemDouble
A double[] which contains the axis points.
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
Each of the arguments are use to set the related attribute (e.g. "X", "High", "Low", "Close" and "Open").
See Also