Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Indicator that uses multiple symbols

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

    Indicator that uses multiple symbols

    I am trying to create an indicator that uses multiple symbols that were added to chart already.

    I have attempted to use

    Plot0.Set(Closes[1][0]);

    To access the extra series that are already on my chart. But, this doesn't work. Must I add the series in the initalize step?

    I tried that too

    Add("Symbol Name", PeriodType.Minute, 5);

    But this doesn't work. I'm still working on this and searching the forums. Any help appreciated.. new to this system still.

    #2
    Okay I figured it out. The bar didn't exist and was throwing an exception. Now that I check the log it makes sense. This was the code required.

    if(CurrentBars[0] < 1 || CurrentBars[1] < 1)
    return;

    Plot0.Set(Highs[1][0]);

    Comment


      #3



      Originally posted by light65536 View Post
      Okay I figured it out. The bar didn't exist and was throwing an exception. Now that I check the log it makes sense. This was the code required.

      if(CurrentBars[0] < 1 || CurrentBars[1] < 1)
      return;

      Plot0.Set(Highs[1][0]);

      Comment

      Latest Posts

      Collapse

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