HighLowClose Constructor (AxisXY, Double, Double, Double, Double, Double) |
Constructs a high-low-close-open chart node beginning with
specified start date.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public HighLowClose(
AxisXY axis,
double[] x,
double[] high,
double[] low,
double[] close,
double[] open
)
Public Sub New (
axis As AxisXY,
x As Double(),
high As Double(),
low As Double(),
close As Double(),
open As Double()
)
public:
HighLowClose(
AxisXY^ axis,
array<double>^ x,
array<double>^ high,
array<double>^ low,
array<double>^ close,
array<double>^ open
)
new :
axis : AxisXY *
x : float[] *
high : float[] *
low : float[] *
close : float[] *
open : float[] -> HighLowClose
Parameters
- axis
- Type: Imsl.Chart2DAxisXY
An Axis specifying the parent of this node.
- x
- Type: SystemDouble
A double array which contains the axis points.
- 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
The X, high, low and close and open are used to specify the respective attributes. That is,
"X", "high", "low", "close" and "open".
See Also