Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Input Series for indicator through strategy

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

    Input Series for indicator through strategy

    Greetings,

    I have a strategy that is based off a specific indicator, however that indicator uses a different indicator as its input series. Doing this with the indicator on the chart is simple as the input series is an option, however it is not in the options when adding it through NinjaScript.

    So, my question is this, how do I change the input series of the main indicator through NinjaScript such that the strategy runs correctly?

    Thanks,
    Taz

    #2
    Hello Taz002,

    Thank you for your post.

    You can use the Indicator's method as the DataSeries input for the other indicator in your strategy when calling values for your conditions. For example, the lines below compare the SMA of the CCI against the Close:
    Code:
    			if(SMA(CCI(14), 14)[0] > Close[0])
    			{
    				// Do something.
    			}
    Please let me know if I may be of further assistance.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    630 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    364 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    105 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    566 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    568 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X