Candlestick Constructor (AxisXY, DateTime, Double, Double, Double, Double) |
Constructs a candlestick chart node beginning with specified start
date.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public Candlestick(
AxisXY axis,
DateTime start,
double[] high,
double[] low,
double[] close,
double[] open
)
Public Sub New (
axis As AxisXY,
start As DateTime,
high As Double(),
low As Double(),
close As Double(),
open As Double()
)
public:
Candlestick(
AxisXY^ axis,
DateTime start,
array<double>^ high,
array<double>^ low,
array<double>^ close,
array<double>^ open
)
new :
axis : AxisXY *
start : DateTime *
high : float[] *
low : float[] *
close : float[] *
open : float[] -> Candlestick
Parameters
- axis
- Type: Imsl.Chart2DAxisXY
An AxisXY which is the parent of this node.
- start
- Type: SystemDateTime
A DateTime that 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
Each of the arguments are use to set the related attribute (e.g.
"High", "Low", "Close" and "Open").
See Also