Calls the NewTick method for the symbol script object corresponding to the symbol of a tick.

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

Syntax

C#
public void NewTick(
	Symbol symbol,
	BarData partialBar,
	TickData tick
)
Visual Basic (Declaration)
Public Sub NewTick ( _
	symbol As Symbol, _
	partialBar As BarData, _
	tick As TickData _
)
Visual C++
public:
void NewTick(
	Symbol^ symbol, 
	BarData^ partialBar, 
	TickData tick
)

Parameters

symbol
Type: RightEdge.Common..::.Symbol
A symbol for which a tick was recieved.
partialBar
Type: RightEdge.Common..::.BarData
The current partial bar for the symbol.
tick
Type: RightEdge.Common..::.TickData
A TickData structure instance containing the latest tick information.

See Also