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 CarlTrading, 03-31-2026, 09:41 PM
          1 response
          152 views
          1 like
          Last Post NinjaTrader_ChelseaB  
          Started by CarlTrading, 04-01-2026, 02:41 AM
          0 responses
          89 views
          1 like
          Last Post CarlTrading  
          Started by CaptainJack, 03-31-2026, 11:44 PM
          0 responses
          131 views
          2 likes
          Last Post CaptainJack  
          Started by CarlTrading, 03-30-2026, 11:51 AM
          0 responses
          127 views
          1 like
          Last Post CarlTrading  
          Started by CarlTrading, 03-30-2026, 11:48 AM
          0 responses
          107 views
          0 likes
          Last Post CarlTrading  
          Working...
          X