A delegate which can be used to display a chart for a symbol.

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

Syntax

C#
public delegate void ShowChartDelegate(
	Symbol symbol,
	DateTime dateTime
)
Visual Basic (Declaration)
Public Delegate Sub ShowChartDelegate ( _
	symbol As Symbol, _
	dateTime As DateTime _
)
Visual C++
public delegate void ShowChartDelegate(
	Symbol^ symbol, 
	DateTime dateTime
)

Parameters

symbol
Type: RightEdge.Common..::.Symbol
The symbol to display a chart for.
dateTime
Type: System..::.DateTime
The date/time to scroll the chart to. Use DateTime.MaxValue to show the end of the chart.

See Also