ICandleSeries.AddCandle
ICandleSeries
function AddCandle(DateValue, OpenValue, HighValue, LowValue, CloseValue: Double; Const ALabel: WideString; AColor: OLE_COLOR): Integer;
Type Library
TeeChartx
Description
The AddCandle function appends a new Stock Market point to the Series. This function returns the corresponding point index for the new added point.
Example [Visual Basic]:
With TChart1.Series(0).asCandle
.AddCandle DateValue("2/11/97"), 120, 135, 112, 115
.AddCandle DateValue("3/11/97"), 115, 125, 102, 121
End With