BotOnTick Method

Called on tick from any of assosiated sessions

Definition

Namespace: SharpTraderBot
Assembly: SharpTraderBot (in SharpTraderBot.dll) Version: 1.0.0
C#
public virtual void OnTick(
	NewTickEventArgs args
)

Parameters

args  NewTickEventArgs

[Missing <param name="args"/> documentation for "M:SharpTraderBot.Bot.OnTick(SharpTraderBot.NewTickEventArgs)"]

Example

C#
public override void OnTick()
{
    // Place tick processing logic here 
}

See Also