IMSL C# Numerical Library

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

Constructs a candlestick chart node beginning with specified axis points.

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

Parameters

axis
An AxisXY which is the parent of this node.
x
A double[] 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

Each of the arguments are use to set the related attribute (e.g. "X", "High", "Low", "Close" and "Open").

See Also

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