This function is called to perform the bar data retrieval.

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

Syntax

C#
List<BarData> RetrieveData(
	Symbol symbol,
	int frequency,
	DateTime startDate,
	DateTime endDate,
	BarConstructionType barConstruction
)
Visual Basic (Declaration)
Function RetrieveData ( _
	symbol As Symbol, _
	frequency As Integer, _
	startDate As DateTime, _
	endDate As DateTime, _
	barConstruction As BarConstructionType _
) As List(Of BarData)
Visual C++
List<BarData^>^ RetrieveData(
	Symbol^ symbol, 
	int frequency, 
	DateTime startDate, 
	DateTime endDate, 
	BarConstructionType barConstruction
)

Parameters

symbol
Type: RightEdge.Common..::.Symbol
Symbol requested
frequency
Type: System..::.Int32
Data frequency requested
startDate
Type: System..::.DateTime
Get data starting at the specified date.
endDate
Type: System..::.DateTime
Get data up to this date.
barConstruction
Type: RightEdge.Common..::.BarConstructionType
The bar construction type to use.

Return Value

A list of bar data retrieved, in ascending date order.

See Also