RegisterActions()

Use the RegisterActions method is to define the behavior of your strategy.

The purpose of this method is to define the behavior of your strategy. Once you define the Setup() method and have your strategy connected to data series and indicators, it's time to put it all together into your own trading model.

OnUpdateOf

Registration of a new action over data series can easily be done using the OnUpdateOffunction. We can demonstrate how to use this method with a dailyBars data series which should be defined in the the Setup() method. Everytime a new daily bar is created, the inside of the OnUpdateOf function is executed.

Parameters

Name

Type

Description

series

IDataSerires<TData>

Data series used as a trigger for calling the function.

Example

Every day (depending on the period of your data series), the strategy will perform the logic inside the OnUpdatefunction. You can define multiple actions over various data series and Signals Framework will take care of synchronizing those data series and execute your strategy logic.

public override void RegisterActions()
{
    OnUpdateOf(dailyBars).Do(() =>
    {
        // Your code to be executed everytime a new bar is created.
        Log("The latest close value is: " + dailyBars[0].Close);
    });
}

Last updated