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.
    JasonNinjaTrader Customer Service

    Comment


      #3
      Hello Sergio66,

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

      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 llanqui, Today, 03:53 AM
              0 responses
              5 views
              0 likes
              Last Post llanqui
              by llanqui
               
              Started by burtoninlondon, Today, 12:38 AM
              0 responses
              10 views
              0 likes
              Last Post burtoninlondon  
              Started by AaronKoRn, Yesterday, 09:49 PM
              0 responses
              15 views
              0 likes
              Last Post AaronKoRn  
              Started by carnitron, Yesterday, 08:42 PM
              0 responses
              11 views
              0 likes
              Last Post carnitron  
              Started by strategist007, Yesterday, 07:51 PM
              0 responses
              14 views
              0 likes
              Last Post strategist007  
              Working...
              X