Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Changing plot color on the fly

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

    Changing plot color on the fly

    Hello

    I was wondering about how I could change the color of a plot object on the fly.
    For example I would like to see the Bollinger Band middle line to be red when going down and green when going up.

    Actually the color is set in the Initialize method :

    Add(new Plot(Color.Orange, "Upper band"));
    Add(new Plot(Color.Orange, "Middle band"));
    Add(new Plot(Color.Orange, "Lower band"));

    How could I change that so that the color will be applied dynamically depending on the direction of the market.

    Many thanks for helping.

    #2
    Hello,

    You could do something like this

    Code:
    if(Rising(Values[0][0]))
    {
      PlotColors[0][0] = Color.Blue;
    }
    Rising: http://www.ninjatrader.com/support/h...tml?rising.htm
    PlotColors: http://www.ninjatrader.com/support/h...plotcolors.htm
    Values: http://www.ninjatrader.com/support/h...tml?values.htm

    Let me know if I can be of further assistance.
    LanceNinjaTrader Customer Service

    Comment


      #3
      Thank you very much Lance.
      This is exactly what I needed

      Comment


        #4
        I can't remember exactly, but I think there is also an example in the help file.

        on my phone, or else i'd check.

        Originally posted by blar58 View Post
        Thank you very much Lance.
        This is exactly what I needed

        Comment


          #5
          Hello,

          Yes the PlotColors link provided includes an example like this, thanks for reminding me
          LanceNinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          602 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          347 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          103 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          559 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          559 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X