Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Indicator Settings
Collapse
X
-
Indicator Settings
I'm having trouble with NT remembering the settings of my indicator in my workspace. I save my workspace and restart NT, but the colors are defaulting to Transparent, when the code has them defaulted to Black and Cyan. Why would these change on restart?Tags: None
-
toptrader,
Please ensure you have serialized your colors. See this tip: http://www.ninjatrader-support2.com/...ead.php?t=4977Josh P.NinjaTrader Customer Service
-
The indicator is working perfectly. The problem is in saving the color settings. I insert the indicator on a chart, adjust the color settings, and save the workspace. However when I open the workspace again, the colors on the chart default to Empty, so I have to change them on every chart every day.
variables:
OnBarUpdate:Code:private Color outlinecolor = Color.Black; private Color shadecolor = Color.Cyan;
Properties:Code:DrawRegion(CurrentBar.ToString()+"1",1,0,hh,ll,outlinecolor,shadecolor,1);
Code:[Description("")] [Category("Parameters")] public Color OutlineColor { get { return outlinecolor; } set { outlinecolor = value; } } [XmlIgnore()] [Description("")] [Category("Parameters")] public Color ShadeColor { get { return shadecolor; } set { shadecolor = value; } }
Comment
-
Bertrand,
You were correct, I missed a piece of the code posted by Josh. The colors are working now, however I've added 2 boolean variables which are now doing the same thing. I save the workspace, exit NinjaTrader, and reopen the NT with my workspace, but it comes back to the default settings. Do I have to do something for the boolean variables as well?
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
566 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
330 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 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
547 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
548 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment