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 elderan, Today, 08:03 PM
              0 responses
              2 views
              0 likes
              Last Post elderan
              by elderan
               
              Started by algospoke, Today, 06:40 PM
              0 responses
              10 views
              0 likes
              Last Post algospoke  
              Started by maybeimnotrader, Today, 05:46 PM
              0 responses
              9 views
              0 likes
              Last Post maybeimnotrader  
              Started by quantismo, Today, 05:13 PM
              0 responses
              7 views
              0 likes
              Last Post quantismo  
              Started by AttiM, 02-14-2024, 05:20 PM
              8 responses
              169 views
              0 likes
              Last Post jeronymite  
              Working...
              X