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 Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          561 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          325 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          101 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          547 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          547 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X