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

bollinger band color

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

    bollinger band color

    found code on how to set EMA indicator color/line width:
    Code:
    EMA(10).Plots[0].Pen = new Pen(Color.Red,2);
    how can you set the plots color/line width for each of the three lines in a bollinger band?
    Last edited by e-man; 02-17-2009, 02:32 PM.

    #2
    Change the [] indexing. Plots[0], Plots[1], etc.
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      so plot0 is lower, plot1 middle and plot2 is upper?

      Comment


        #4
        You will just have to try. Generally it is in whichever order it is listed out in the databox as.
        Josh P.NinjaTrader Customer Service

        Comment


          #5
          josh - thanks for your help! ;-)

          just in case anyone else needs this info:

          Code:
          // draw Bollinger Bands
          Bollinger myBB = Bollinger(Median, DblBolStdDev, IntBolPeriod);
          myBB.Plots[0].Pen = new Pen(Color.Red, 1);       // upper
          myBB.Plots[1].Pen = new Pen(Color.Green, 2);    // middle
          myBB.Plots[2].Pen = new Pen(Color.Blue, 1);      // lower
          Add(myBB);
          this is placed in the Initialize() function

          note: DblBolStdDev and IntBolPeriod are variables that i have defined and use
          Last edited by e-man; 02-17-2009, 04:47 PM.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by algospoke, Yesterday, 06:40 PM
          2 responses
          19 views
          0 likes
          Last Post algospoke  
          Started by ghoul, Today, 06:02 PM
          3 responses
          14 views
          0 likes
          Last Post NinjaTrader_Manfred  
          Started by jeronymite, 04-12-2024, 04:26 PM
          3 responses
          45 views
          0 likes
          Last Post jeronymite  
          Started by Barry Milan, Yesterday, 10:35 PM
          7 responses
          20 views
          0 likes
          Last Post NinjaTrader_Manfred  
          Started by AttiM, 02-14-2024, 05:20 PM
          10 responses
          180 views
          0 likes
          Last Post jeronymite  
          Working...
          X