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 sjsj2732, Yesterday, 04:31 AM
|
0 responses
32 views
0 likes
|
Last Post
by sjsj2732
Yesterday, 04:31 AM
|
||
|
Started by NullPointStrategies, 03-13-2026, 05:17 AM
|
0 responses
286 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
283 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
133 views
1 like
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
91 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|

Comment