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 Hwop38, 05-04-2026, 07:02 PM
|
0 responses
172 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
328 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
252 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
354 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
181 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment