NinjaScript > Educational Resources > Tutorials > Indicators > Intermediate - Your own SMA >

Entering Calculation Logic

Print this Topic Previous pageReturn to chapter overviewNext page

The OnBarUpdate() method is called for each incoming tick or on the close of a bar (user defined) when performing real-time calculations and is called on each bar of a data series when re-calculating the indicator. For example, an indicator would be re-calculated when adding it to an existing chart that has existing price data displayed. Therefore, this is the main method called for indicator calculation and we will use this method to enter the script that will calculate a simple moving average.

 

 

Are there enough bars?

Replace the wizard generated code with the following code into the OnBarUpdate() method in the NinjaScript Editor:

 

// Do not calculate if we don't have enough bars
if (CurrentBar < Period) return;

 

To calculate a 20 period moving average you will need a minimum of 20 bars of data. The first statement in our OnBarUpdate() method checks to see if there are enough bars of data to perform the moving average calculation. "CurrentBar" returns the index number of the current bar and this is checked against the user defined parameter "Period". If the current bar number is less than the user defined period we "return" which skips calculating the moving average.

 

 

Getting a sum of closing prices

Enter the following code into the OnBarUpdate() method and below the code snippet you entered above:

 

// Get a sum of prices over the specified period
double sum = 0;
for (int barsAgo = 0; barsAgo < Period; barsAgo++)
{
   sum = sum + Input[barsAgo];
}

 
First we must declare a variable that will store our sum total.

 

 double sum = 0;

 

The variable "sum" whose value is of type "double" will serve as temporary storage.

 

 for (int barsAgo = 0; barsAgo < Period; barsAgo++)
 {

        sum = sum + Input[barsAgo];

 }

 

Next we must calculate the sum. We use a standard "for" loop to skip through prices and add them to the "sum" variable. Although the command that represents the loop may look intimidating, its really quite simple. Let's look at it in English....

 

What the loop is saying is:

 

1. the number of bars ago is now zero

2. as long as the number of bars ago is less than the moving average period, then go to line 3 otherwise this loop is finished

3. get the price Input[number of bars ago] and add it to the running sum total

4. add one to the number of bars ago (if number of bars ago was zero it will now be one)

5. go to to line 2

 

You can find more information on how loops work here. Once the loop has finished, it will have calculated the total sum of closing prices for the period of our moving average.

 

* We use the value of Input[barsAgo] to get a price to use for our calculation. We could have substituted Close[barsAgo] to use closing prices or High[barsAgo] to use high prices. The reason we use Input[barsAgo] is since this allows flexibility for what the indicator is calculated based off of. Remember users have the option to select a price type (High, Open, Close etc...) from the Indicator Dialog window.

 

 

The final calculation

Enter the following code into the OnBarUpdate() method and below the code snippet you entered above:

 

// Calculate and set the 'average' value to the 'Plot0' property
Plot0.Set(sum / Period);

 

We can now calculate the final moving average value and assign it's value to the property that represents the plot data. We have just finished coding our simple moving average. The OnBarUpdate() method in your editor should look identical to the image below.

 

Tutorials_Indicators_22

 

 

Alternate Implementation

In this tutorial we are using a "for" loop to iterate through a collection of prices and accumulate a sum value. We chose this approach to demonstrate the use of a loop. A simple moving average can actually be expressed in a more efficient manner using the built in SUM indicator as show below.

 

// Do not calculate if we don't have enough bars
if (CurrentBar < Period) return;

 

// Calculate and set the 'average' value to the 'Plot0' property
Plot0.Set(SUM(Input, Period) / Period);