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 Hwop38, 05-04-2026, 07:02 PM
    0 responses
    174 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    329 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    252 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    355 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    182 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Working...
    X