Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Indicator on Multi-Instrument Indicator

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

    Indicator on Multi-Instrument Indicator

    I can't seem to apply an indicator to another multi-instrument indicator.

    If I Add() another instrument's bar series in Initialize(), that indicator will work, but I can't apply an indicator to it.

    And I can't Add() another instrument's bar series in OnBarUpdate().

    As far as I can tell, you can make a multi-instrument indicator, or you can apply indicators to indicators, but you can't do both. Is my understanding correct, and if so do you have any plans to fix it?

    Thanks.

    #2
    Let me try and understand.

    Indicator A --> Has the primary series (lets say 1 minute chart) and an additional 5 min series

    You try to apply an SMA on Indicator A --> This does not work?
    RayNinjaTrader Customer Service

    Comment


      #3
      Upon further investigation, it seems that the reason it wasn't working was that I conditioned the Add() upon Instrument not being null, which I thought was reasonable because the Instrument I'm Adding needs to have the same BarsPeriod.ID and BarsPeriod.Value as the primary instrument. But this keeps it from working when another indicator is used on it.

      // Can't use an indicator on an indicator that uses the following:
      if (Instrument != null)
      Add("SYMBOL", BarsPeriod.Id, BarsPeriod.Value);

      // You can use an indicator on an indicator that uses the following:
      Add("SYMBOL", BarsPeriod.Id, BarsPeriod.Value);

      I would have thought that it would be wrong to refer to BarsPeriod.Id and BarsPeriod.Value if Instrument is null, but that's what seems to work.

      -Kevin

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      602 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      347 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      103 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      560 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      559 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X