![]() |
This website will be down for maintenance from Friday May 24th at 6PM MDT until Saturday May 25th at 11AM MDT. We apologize for the inconvenience. If you need assistance during this time, please email sales@ninjatrader.com
|
|||||||
| Suggestions And Feedback New feature suggestions and feedback. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Member
Join Date: Feb 2008
Posts: 66
Thanks: 0
Thanked 1 time in 1 post
|
Please add the possibility to color the outline UP candle and the outline DOWN candle
see the image below Thanks |
|
|
|
|
|
#2 |
|
NinjaTrader Customer Service
Join Date: Aug 2007
Location: Breda, Netherlands
Posts: 11,236
Thanks: 83
Thanked 336 times in 328 posts
|
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.
Jason
NinjaTrader Customer Service |
|
|
|
|
|
#3 |
|
NinjaTrader Customer Service
Join Date: Aug 2007
Location: Breda, Netherlands
Posts: 11,236
Thanks: 83
Thanked 336 times in 328 posts
|
Hello Sergio66,
Your suggestion to configure the candle outline for up and down bars seperate has been assigned with ID 973.
Jason
NinjaTrader Customer Service |
|
|
|
|
|
#4 |
|
Junior Member
Join Date: Aug 2010
Location: Houston
Posts: 16
Thanks: 0
Thanked 4 times in 2 posts
|
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;
}
Last edited by nsymms; 05-17-2011 at 09:30 PM.
|
|
|
|
|
|
#5 |
|
Member
Join Date: Feb 2008
Posts: 66
Thanks: 0
Thanked 1 time in 1 post
|
Neal, I am not familiar with Ninja script
Can you post here the indicator? TIA |
|
|
|
|
|
#6 |
|
Junior Member
Join Date: Aug 2010
Location: Houston
Posts: 16
Thanks: 0
Thanked 4 times in 2 posts
|
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 |
|
|
|
|
The following user says thank you to nsymms for this post: |
|
|
|
#7 |
|
Member
Join Date: Feb 2008
Posts: 66
Thanks: 0
Thanked 1 time in 1 post
|
Thank you very much!
|
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Candle outline - Transparent | TCust | Charting | 9 | 12-29-2010 12:54 PM |
| Candle Outline a wick colors options | Sergio66 | Version 7 Beta General Questions & Bug Reports | 3 | 10-21-2010 03:58 PM |
| Candle Outline | dwalls | Charting | 1 | 01-21-2010 12:37 PM |
| candle outline | chartlearner | Charting | 1 | 05-12-2009 06:43 AM |
| How to draw text without background and outline colors specified | clearpicks | Indicator Development | 2 | 08-05-2008 01:29 PM |