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 rhyminkevin, Today, 04:58 PM
              3 responses
              48 views
              0 likes
              Last Post Anfedport  
              Started by iceman2018, Today, 05:07 PM
              0 responses
              5 views
              0 likes
              Last Post iceman2018  
              Started by lightsun47, Today, 03:51 PM
              0 responses
              7 views
              0 likes
              Last Post lightsun47  
              Started by 00nevest, Today, 02:27 PM
              1 response
              14 views
              0 likes
              Last Post 00nevest  
              Started by futtrader, 04-21-2024, 01:50 AM
              4 responses
              50 views
              0 likes
              Last Post futtrader  
              Working...
              X