Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Rising/Falling colors for MA...

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

    Rising/Falling colors for MA...

    Hi,
    Is there some easy way/method to set colors for rising/falling MAs similar to BackColor method? If rising set color green, falling- red, neutral - black... Also, is there a way to set dash style please?
    Thank you.

    #2
    Art, yes you can set up a filter and then change the color based on your filters. Please see the "Understanding cell conditions" section on this page for how.

    Can you please clarify what you mean by setting the dash style? You can select from the options in the screenshot for which dash style you wish to use.
    Attached Files
    AustinNinjaTrader Customer Service

    Comment


      #3
      Thank you Austin. I meant line dash style, how to set the line dash style programmatic. Sorry to confuse you.
      Thank you again.

      Comment


        #4
        Art, to use the dash style, please use this bit of code, as indicated in the screenshot I posted:
        Code:
        DashStyle.Dash;
        AustinNinjaTrader Customer Service

        Comment


          #5
          Thank you Austin, but I'm still not clear how to change the dash style in this case:

          Add(new Line(Color.Lime, 20, "Lower"));

          What should follow to change the dash style of above line please? I was hoping for the 3-rd argument but Add() takes only two...
          Thank you very much.

          Comment


            #6
            Art09, please try this in the Initialize() -

            Code:
            Add(new Line(Color.Lime, 20, "Lower"));
            			
            Lines[0].Pen.DashStyle = DashStyle.Solid;

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Geovanny Suaza, 02-11-2026, 06:32 PM
            0 responses
            571 views
            0 likes
            Last Post Geovanny Suaza  
            Started by Geovanny Suaza, 02-11-2026, 05:51 PM
            0 responses
            330 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
            549 views
            1 like
            Last Post Geovanny Suaza  
            Started by RFrosty, 01-28-2026, 06:49 PM
            0 responses
            549 views
            1 like
            Last Post RFrosty
            by RFrosty
             
            Working...
            X