Constructs a candlestick chart node beginning with specified start
date.
Namespace:
Imsl.Chart2D
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
public Candlestick( AxisXY axis, DateTime start, double[] high, double[] low, double[] close, double[] open ) |
Visual Basic (Declaration) |
---|
Public Sub New ( _ axis As AxisXY, _ start As DateTime, _ high As Double(), _ low As Double(), _ close As Double(), _ open As Double() _ ) |
Visual C++ |
---|
public: Candlestick( AxisXY^ axis, DateTime start, array<double>^ high, array<double>^ low, array<double>^ close, array<double>^ open ) |
Parameters
- axis
- Type: Imsl.Chart2D..::.AxisXY
An AxisXY which is the parent of this node.
- start
- Type: System..::.DateTime
A DateTime that specifies the first date.
- high
- Type: array<
System..::.Double
>[]()[]
A double[] which contains the stock's high prices.
- low
- Type: array<
System..::.Double
>[]()[]
A double[] which contains the stock's low prices.
- close
- Type: array<
System..::.Double
>[]()[]
A double[] which contains the stock's closing prices.
- open
- Type: array<
System..::.Double
>[]()[]
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").