Announcement

Collapse
No announcement yet.

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 CaptainJack, 05-29-2026, 05:09 AM
          0 responses
          475 views
          0 likes
          Last Post CaptainJack  
          Started by CaptainJack, 05-29-2026, 12:02 AM
          0 responses
          315 views
          0 likes
          Last Post CaptainJack  
          Started by charlesugo_1, 05-26-2026, 05:03 PM
          0 responses
          253 views
          1 like
          Last Post charlesugo_1  
          Started by DannyP96, 05-18-2026, 02:38 PM
          1 response
          340 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by CarlTrading, 05-11-2026, 05:56 AM
          0 responses
          305 views
          0 likes
          Last Post CarlTrading  
          Working...
          X