ICandleSeries.CloseValues
ICandleSeries

property CloseValues: IValueList;

Type Library
TeeChartx

Description
The CloseValues property is used to store all Stock market Close values.

You can access Close values in the same way you can access X or Y values.

Example [Visual Basic]:

{ this increments the 6th Candle Close value }

With TChart1.Series(0).asCandle

.CloseValues.Value(5) = .CloseValues.Value(5) + 1

End With