Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Indicator loses settings upon restart
Collapse
X
-
Hello,
Make sure the code in the Properties section is properly defined to allow you to specify user brushes. Also make sure you have not deleted the inputs from State.SetDefaults.
You can also contact a professional NinjaScript Consultant who would be eager to create or modify this script at your request or assist you with your script. The NinjaTrader Ecosystem has affiliate contacts who provide educational as well as consulting services.
Please let me know if you would like a list of affiliate consultants who would be happy to create this script or any others at your request or provide one on one educational services.
Comment
-
Hello,
Each brush input needs to be set up like the example I provided in my previous response:
Code:[XmlIgnore] [Display(Name = "Valid Highs", GroupName = "Display", Order = 1)] public Brush ValidHighColor { get; set; } [Browsable(false)] public string ValidHighColorSerialize { get { return Serialize.BrushToString(ValidHighColor); } set { ValidHighColor = Serialize.StringToBrush(value); } }
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