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

Need help with second plot line

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

    Need help with second plot line

    I tweaked the code for RMI to include UpDown coloring which worked, then when I added a second line but its not displaying, not sure what I'm missing here. Any help would be appreciated.
    Attached Files

    #2
    Hello Conceptzx,

    Your public property is not correct, you need to increment the index to 1 for the new plot. You will need to remove and reapply the indicator after making this change.

    Code:
    public Series<double> RMIplot2
    {
    get { return Values[0]; }
    }​
    needs to be

    Code:
    public Series<double> RMIplot2
    {
    get { return Values[1]; }
    }
    JesseNinjaTrader Customer Service

    Comment


      #3
      Thank you. There was a little more involved than that but I got it sorted.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by futtrader, Today, 01:16 PM
      0 responses
      4 views
      0 likes
      Last Post futtrader  
      Started by Segwin, 05-07-2018, 02:15 PM
      14 responses
      1,789 views
      0 likes
      Last Post aligator  
      Started by Jimmyk, 01-26-2018, 05:19 AM
      6 responses
      838 views
      0 likes
      Last Post emuns
      by emuns
       
      Started by jxs_xrj, 01-12-2020, 09:49 AM
      6 responses
      3,294 views
      1 like
      Last Post jgualdronc  
      Started by Touch-Ups, Today, 10:36 AM
      0 responses
      13 views
      0 likes
      Last Post Touch-Ups  
      Working...
      X