Calculates indicator values for a series of Bar Data.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

C#
void SetBars(
	RList<BarData> bars
)
Visual Basic (Declaration)
Sub SetBars ( _
	bars As RList(Of BarData) _
)
Visual C++
void SetBars(
	RList<BarData^>^ bars
)

Parameters

bars
Type: RightEdge.Common..::.RList<(Of <(BarData>)>)
A list of bar data objects for which the indicator value should be calculated

Remarks

This method will calculate the indicator values for the bar data series supplied in bars. The list of values can be accessed with the [P:Item] indexer.

See Also