Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

OUTLINE UP and DOWN Candle Colors

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

    OUTLINE UP and DOWN Candle Colors

    Please add the possibility to color the outline UP candle and the outline DOWN candle

    see the image below

    Thanks
    Attached Files

    #2
    Hello Sergio66,

    I will forward your suggestion to my superiors to include it in our tracking system for possible future enhancements. Once they respond back with an ID#, I will let you know.

    Thank you for your feedback.

    Comment


      #3
      Hello Sergio66,

      Your suggestion to configure the candle outline for up and down bars seperate has been assigned with ID 973.

      Comment


        #4
        Sergio66,

        Maybe this is what your image is from, but you know you can do this with a custom indicator, right? The only difference is that it colors the wicks too, not just the outlines. NT doesn't have a separate setting for the wicks.

        You simply create an indicator and in the OnBarUpdate method you set CandleOutlineColor to whatever you want. Something like this:

        Code:
        protected override void OnBarUpdate()
                {
                    if (Close[0]>Open[0])
                        CandleOutlineColor = Color.Lime;
                    if (Close[0]<Open[0])
                        CandleOutlineColor = Color.OrangeRed;
                    if (Close[0]==Open[0])
                        CandleOutlineColor = Color.White;
                }
        - Neal
        Last edited by nsymms; 05-17-2011, 09:30 PM.

        Comment


          #5
          Neal, I am not familiar with Ninja script

          Can you post here the indicator?

          TIA

          Comment


            #6
            Indicator attached. Please note that this is a very simple no-frills candle coloring indicator. It could have many many improvements, but it serves my purposes and that's why I wrote it.

            - Neal
            Attached Files

            Comment


              #7
              Thank you very much!

              Comment

              Latest Posts

              Collapse

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