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 Shai Samuel, 07-02-2022, 02:46 PM
              4 responses
              92 views
              0 likes
              Last Post Bidder
              by Bidder
               
              Started by DJ888, Yesterday, 10:57 PM
              0 responses
              6 views
              0 likes
              Last Post DJ888
              by DJ888
               
              Started by MacDad, 02-25-2024, 11:48 PM
              7 responses
              158 views
              0 likes
              Last Post loganjarosz123  
              Started by Belfortbucks, Yesterday, 09:29 PM
              0 responses
              7 views
              0 likes
              Last Post Belfortbucks  
              Started by zstheorist, Yesterday, 07:52 PM
              0 responses
              7 views
              0 likes
              Last Post zstheorist  
              Working...
              X