If aggregating in real time, call this when a tick arrives.

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

Syntax

C#
public void ProcessTick(
	TickData tick
)
Visual Basic (Declaration)
Public Sub ProcessTick ( _
	tick As TickData _
)
Visual C++
public:
void ProcessTick(
	TickData tick
)

Parameters

tick
Type: RightEdge.Common..::.TickData
Tick instance.

Remarks

This function will handle all incoming ticks and determine if a new bar for the specified frequency should be produced at which point the NewBar event will be called.

See Also