Delegate when a new bar for a symbol is received.

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

Syntax

C#
public delegate void BarDataDelegate(
	Symbol symbol,
	BarData data
)
Visual Basic (Declaration)
Public Delegate Sub BarDataDelegate ( _
	symbol As Symbol, _
	data As BarData _
)
Visual C++
public delegate void BarDataDelegate(
	Symbol^ symbol, 
	BarData^ data
)

Parameters

symbol
Type: RightEdge.Common..::.Symbol
Symbol of the new bar.
data
Type: RightEdge.Common..::.BarData
Populated BarData class.

See Also