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 using mixed colors

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

    Indicator using mixed colors

    I am using an indicator which draws multiple chart lines (in this case a Bollinger) and need to set the draw properties (color, thickness, etc.) different for one part of the indicator (the Bollinger Middle) from the other parts. I have found how to do this modifing the properties of the indicator on the chart but I need to do it using Ninjascript in my strategy. How could I do this?

    #2
    You can try something like the following in the Initialize() method.

    Code:
    Bollinger myBollinger = Bollinger(2, 14);  // Assign the indicator to a temp variable
    myBollinger.Plots[1].Pen = new Pen(Color.Red, 2); // Change the pen of the middle plot to a color of red and width of 2
    Add(myBollinger); // Add the indicator to the chart for display
    RayNinjaTrader Customer Service

    Comment


      #3
      Thanks, it worked great. I guess the secret is knowing that the Plots array is zero based and in the order of the Plots listed when you edit an indicator (hope that make sense to everyone else).

      Comment


        #4
        Correct although for clarification, the are indexed based on how they are added withing the indicator source code Initalize() method.
        RayNinjaTrader Customer Service

        Comment


          #5
          So we can make commands that modify individual indicator's properties. Can we also make commands that modify the overall chart properties? For instance, I am not use to seeing dates as dd.mm.yyyy on the x-axis and would like to be able to change it to mm.dd.yyyy

          Better yet, is there a way I can change the default settings for this so I don't have to do it manually every time?
          Josh P.NinjaTrader Customer Service

          Comment


            #6
            Within the chart properties dialog (double click on the chart canvas) you can change the format of the x-axis. Once done, right click in the chart and select the menu Templates > Save As Default.
            RayNinjaTrader Customer Service

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by ZenCortexHurry, Today, 01:07 PM
            0 responses
            2 views
            0 likes
            Last Post ZenCortexHurry  
            Started by ZenCortexHurry, Today, 01:04 PM
            0 responses
            0 views
            0 likes
            Last Post ZenCortexHurry  
            Started by f.saeidi, Today, 12:14 PM
            3 responses
            9 views
            0 likes
            Last Post NinjaTrader_Gaby  
            Started by Russ Moreland, Today, 12:54 PM
            1 response
            3 views
            0 likes
            Last Post NinjaTrader_Erick  
            Started by philmg, Today, 12:55 PM
            1 response
            4 views
            0 likes
            Last Post NinjaTrader_ChristopherJ  
            Working...
            X