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