IMSL C# Numerical Library

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

Constructs a candlestick chart node beginning with specified start date.

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

Parameters

axis
An AxisXY which is the parent of this node.
start
A DateTime that specifies the first date.
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. "High", "Low", "Close" and "Open").

See Also

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