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 kinfxhk, 07-14-2026, 09:39 AM
          0 responses
          127 views
          0 likes
          Last Post kinfxhk
          by kinfxhk
           
          Started by kinfxhk, 07-13-2026, 10:18 AM
          0 responses
          105 views
          0 likes
          Last Post kinfxhk
          by kinfxhk
           
          Started by kinfxhk, 07-13-2026, 09:50 AM
          0 responses
          85 views
          0 likes
          Last Post kinfxhk
          by kinfxhk
           
          Started by kinfxhk, 07-13-2026, 07:21 AM
          0 responses
          105 views
          0 likes
          Last Post kinfxhk
          by kinfxhk
           
          Started by kinfxhk, 07-11-2026, 02:11 AM
          0 responses
          86 views
          0 likes
          Last Post kinfxhk
          by kinfxhk
           
          Working...
          X