Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

IndicatorBase objects

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    IndicatorBase objects

    Here I go again poking around where I shouldn't.

    When you call Add() in Initialize() in a strategy, I typically saw it written as :
    Add(SMA(10));

    But the compiler shows it's looking for an IndicatorBase object. So just for fun I went:

    private IndicatorBase mySMA = null;

    mySMA = SMA(10);
    Add(mySMA);
    mySMA.Plots[0].Pen.Color = Color.Orange;

    And wow, everything worked. Then I went to look in the docs and did a search for IndicatorBase and NOTHING CAME UP!

    I'm very new at all of this - does this mean this is a new class? Or just something as an end user we shouldn't mess with? I'm trying to learn HOW to learn Ninjascript, and finding an important class NOT in the docs scares me.

    Ok, just wondering. I thought making an object reference for the indicator would be better than calling (or typing out) full indicators everytime you need to work with one. Maybe there is no speed difference at all and I just wasted everyone's time who read this, haha.

    #2
    Hello Locke,

    Thank you for your post.

    This would just be considered unsupported code.

    Comment


      #3
      Originally posted by Locke View Post
      Here I go again poking around where I shouldn't.

      When you call Add() in Initialize() in a strategy, I typically saw it written as :
      Add(SMA(10));

      But the compiler shows it's looking for an IndicatorBase object. So just for fun I went:

      private IndicatorBase mySMA = null;

      mySMA = SMA(10);
      Add(mySMA);
      mySMA.Plots[0].Pen.Color = Color.Orange;

      And wow, everything worked. Then I went to look in the docs and did a search for IndicatorBase and NOTHING CAME UP!

      I'm very new at all of this - does this mean this is a new class? Or just something as an end user we shouldn't mess with? I'm trying to learn HOW to learn Ninjascript, and finding an important class NOT in the docs scares me.

      Ok, just wondering. I thought making an object reference for the indicator would be better than calling (or typing out) full indicators everytime you need to work with one. Maybe there is no speed difference at all and I just wasted everyone's time who read this, haha.
      It is not documented because it is a base class: specifically the base class from which the Indicator class inherits. There are certain advantages to what you have written, but using such code would still fall in unsupported territory. You just have to remain aware of it.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      152 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      87 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      131 views
      2 likes
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      127 views
      1 like
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      106 views
      0 likes
      Last Post CarlTrading  
      Working...
      X