In my strategy, I have a custom order for displaying categories in the Settings:
csharp
Copy
Download[Gui.CategoryOrder("Properties", 1)]
[Gui.CategoryOrder("Setup", 2)]
[Gui.CategoryOrder("Parameters", 3)]
[Gui.CategoryOrder("ATM Strategy", 4)]
[Gui.CategoryOrder("ZigZag", 5)]
[Gui.CategoryOrder("Moving Averages", 6)]
// ... and so on
When I run the uncompiled version, everything works fine—I only see these specific groups of settings.
But when I run the compiled version, I see additional categories like:
- Optimize
- Visual
- Misc
- Lines
How can I hide (or remove) them?
Thanks!


Comment