Constructs a high-low-close chart node beginning with specified
start date.
Namespace:
Imsl.Chart2D
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
public HighLowClose( AxisXY axis, double[] x, double[] high, double[] low, double[] close ) |
Visual Basic (Declaration) |
---|
Public Sub New ( _ axis As AxisXY, _ x As Double(), _ high As Double(), _ low As Double(), _ close As Double() _ ) |
Visual C++ |
---|
public: HighLowClose( AxisXY^ axis, array<double>^ x, array<double>^ high, array<double>^ low, array<double>^ close ) |
Parameters
- axis
- Type: Imsl.Chart2D..::.AxisXY
An Axis specifying the parent of this node.
- x
- Type: array<
System..::.Double
>[]()[]
A double[] which contains the axis points.
- 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.
Remarks
The X, high, low and close are used to specify the
respective attributes. That is, "X", "high", "low" and "close".