Entering Calculation Logic

View as Markdown

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 do our calculations.

Creating the Series\<double\> Object

  1. Declare a variable (MySeries used in this example) of type Series\<double\> that will hold a Series\<double\> object within the region “Variables”.

  2. Create a new Series\<double\> object and assign it to the MySeries variable within the OnStateChange() method.

1private Series<double> MySeries;
2protected override void OnStateChange()
3{
4 if (State == State.SetDefaults)
5 {
6 ...
7 }
8 else if (State == State.DataLoaded)
9 {
10 MySeries = new Series<double>(this);
11 }
12}

Storing calculations in the DataSeries object

Now that we have our Series\<double\> object we can store double values into it. For this example we will store a simple Close minus Open calculation.

Enter the following code into the OnBarUpdate() method:

1// Calculate the range of the current bar and set the value
2MySeries[0] = Close[0] - Open[0];

The value of a Series\<t\> object will be aligned with the current bar. This means that all Series\<t\> objects will be synced with the CurrentBar index. It allows you to store A double value that corresponds with every bar.

Using Series\<t\> values

With our new Series\<double\> object we can continue with further calculations easily. We can now use our Series\<double\> object as input to an indicator method such as SMA or instead of always writing Close[0] - Open[0] we can substitute our Series\<double\> object instead as per the example below.

To plot our final calculation we will store the calculation in our plot called MyPlot. In the OnBarUpdate() method add the following code snippet:

1// Add the bar's range to the SMA value
2MyPlot[0] = SMA(SMAPeriod)[0] + MySeries[0];

Here we assign the SMA + Series\<double\> value to the property that represents the plot data using the ”=” assignment operator. We have just finished coding our CustomSeries example. The class code in your editor should look identical to the below. You are now ready to compile the indicator and configure it on a chart.

1public class CustomSeries : Indicator
2{
3 private Series<double> MySeries;
4
5 protected override void OnStateChange()
6 {
7 if (State == State.SetDefaults)
8 {
9 Description = @"Stores intermediary calculations without the use of plots";
10 Name = "CustomSeries";
11 Calculate = Calculate.OnBarClose;
12 IsOverlay = false;
13 DisplayInDataBox = true;
14 DrawOnPricePanel = true;
15 DrawHorizontalGridLines = true;
16 DrawVerticalGridLines = true;
17 PaintPriceMarkers = true;
18 ScaleJustification = NinjaTrader.Gui.Chart.ScaleJustification.Right;
19 //Disable this property if your indicator requires custom values that cumulate with each new market data event.
20 //See Help Guide for additional information.
21 IsSuspendedWhileInactive = true;
22 SMAPeriod = 5;
23 AddPlot(Brushes.Orange, "MyPlot");
24 }
25 else if (State == State.Configure)
26 {
27 }
28 else if (State == State.DataLoaded)
29 {
30 MySeries = new Series<double>(this);
31 }
32 }
33
34 protected override void OnBarUpdate()
35 {
36 // Calculate the range of the current bar and set the value
37 MySeries[0] = Close[0] - Open[0];
38
39 // Add the bar's range to the SMA value
40 MyPlot[0] = SMA(SMAPeriod)[0] + MySeries[0];
41 }
42
43 #region Properties
44 [NinjaScriptProperty]
45 [Range(1, int.MaxValue)]
46 [Display(Name="SMAPeriod", Description="Simple Moving Average Period", Order=1, GroupName="Parameters")]
47 public int SMAPeriod
48 { get; set; }
49
50 [Browsable(false)]
51 [XmlIgnore]
52 public Series<double> MyPlot
53 {
54 get { return Values[0]; }
55 }
56 #endregion
57}