Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 Kaledus, Today, 01:29 PM
      5 responses
      12 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by Waxavi, Today, 02:00 AM
      1 response
      8 views
      0 likes
      Last Post NinjaTrader_LuisH  
      Started by alifarahani, Today, 09:40 AM
      5 responses
      23 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by gentlebenthebear, Today, 01:30 AM
      3 responses
      16 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by PhillT, Today, 02:16 PM
      2 responses
      7 views
      0 likes
      Last Post PhillT
      by PhillT
       
      Working...
      X