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 Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      585 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      340 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
      554 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      552 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X