Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Chart Background Color
Collapse
X
-
Chart Background Color
Is there a variable I can use to pickup the color that is being used as the background for the chart? I am trying to draw a box with the same color as the background of the chart, but don't want to statically set the color of the box because if the background color changes the box won't blend in.Josh P.NinjaTrader Customer ServiceTags: None
-
Thanks for the post emuns, while the ChartControls would not be supported territory you could for example look into adding this snippet in OnStart() to change the color to your liking from the code -
protected override void OnStartUp()
{
ChartControl.BackColor = Color.AliceBlue; // your color here.
}
The color could be also made a public user input for the script for sure.
You probably also want to add some logic to first store the current BackColor in a custom variable so you could restore to the chart default once the study is removed in OnTermination().Last edited by NinjaTrader_Bertrand; 11-11-2013, 04:36 AM.
Comment
-
Hello Bertrand,
Iˇm not sure if I understand what you mean or maybe you don´t understand what I mean... I use my own indicator (see attachment) which displays different color of a background of a chart depending on ETH/RTH. If I would like to change the color I wouln´t like to do it by going to the script but rather just changing it in Parameters. Is this possible?
Thank you.Attached Files
Comment
-
Thanks for the clarification - that was indeed a misunderstanding on my part here.
You can make a user input of type color to make this choice for your indicator script available from the UI directly, we also have a tip that would go into the steps needed to achieve that - http://www.ninjatrader.com/support/f...ead.php?t=4977
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
596 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
343 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
556 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
554 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment