Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

use of customized indicators?

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

    use of customized indicators?

    Hey,

    I am pretty new to ninjatrader and therefore, I'd appreciate if you helped me a bit. I just downloaded new indicators from this forum and would like to use them. How can I implement them in a new strategy? Is there a list to see how they are actually called, such as for instance periods are called Period in the set up.

    thanks

    #2
    cashmoney, there are a few ways to use new indicators. First of all, it is necessary to import the indicator. After that is done, you can reference the new indicators in your strategies in one of two ways.

    The first way would be to use the Strategy Wizard, where you can select specific conditions (including conditions from your new indicators) and take actions when the conditions are true. Your new indicator will appear in the indicator list of the Strategy Wizard.

    The second method would be to reference the indicator in code. Say you downloaded a new version of the SMA indicator, called ZZSMA. In the Initialize() section of your strategy, you can call the Add() method to add in your new indicator: Add(ZZSMA(...[parameters here]));.

    It is also possible to get the current value of some indicator without adding it:
    Code:
    OnBarUpdate()
    {
       currentZZSMA = ZZSMA(...)[0];
    }
    AustinNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    648 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    369 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    108 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    572 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    573 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X