Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Errors saving Workspace or as an Indicator Template
Collapse
X
-
Errors saving Workspace or as an Indicator Template
This NT8 ColorTimeRegion indicator is a converted NT7 indicator. Everything functions correctly with the indicator and it compiles error free. Problem is, when I try to save the indicator settings to a template, I get an XML error, also, when trying to save the Workspace, I get an error as well. I have attached the indicator and screen shots of the errors. Any help would be appreciated.Tags: None
-
Hello mlarocco,
Thank you for the post.
Is this one of the items listed in the user app share? If so, can you provide a link to the download page?
It seems that the brush properties in the file are missing the [XmlIgnore()] attribute. You can see an example of a correct brush property and serialization property listed here: https://ninjatrader.com/support/help...definedbrushes
I look forward to being of further assistance.
-
Hello mlarocco,
Thank you for the reply.
Yes in this case the conversion script was not completely successful as it missed some attributes. You can modify the resulting script to include the [XmlIgnore()] on the Brush properties.
The link I had provided shows one full brush property as an example, this is what the syntax should look like for all brush properties in the script:
I have bolded the Name for the brush, this is going to change for each brush property.Code:[XmlIgnore] public Brush [B]MyBrush [/B]{ get; set; } [Browsable(false)] public string [B]MyBrush[/B]Serialize { get { return Serialize.BrushToString([B]MyBrush[/B]); } set { [B]MyBrush [/B]= Serialize.StringToBrush(value); } }
Here is an example from the script you had provided:
here i have bolded the added [XmlIgnore] attribute, this would need to be added to each of the brush properties. The property below it converts the brush to a string so it can be saved/loaded with the workspace. The error is caused because the workspace is trying to save a brush which is more complex than a string.Code:[Display(Name = "Region Color", Description = "Color for 3rd region", GroupName = "3rd Time Region", Order = 5)] [B][XmlIgnore][/B] public Brush Region3Color { get { return region3Color; } set { region3Color = value; } } [Browsable(false)] public string Region3ColorSerialize { get { return Serialize.BrushToString(region3Color); } set { region3Color = Serialize.StringToBrush(value); } }
I look forward to being of further assistance.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
602 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
347 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
559 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
558 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment