Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Edit @Indicator
Collapse
X
-
Tags: None
-
Hello wbennettjr,
Thank you for writing in. You should not be modifying the @Indicator.cs file. Could you please let me know why you are trying to open it in the editor? If you need a partial class, you will want to write a partial class and place it in the Add Ons folder (to prevent the NinjaScript generated code from triggering).
Thank you in advance.Michael M.NinjaTrader Quality Assurance
-
In NT7, I modified UserDefinedMethods to add properties and methods that I wanted available on all indicators. If I understand correctly, you're saying this should work if I add these properties and methods in a partial Indicator class in the Add Ons folder?
Comment
-
Hello wbennettjr,
This is correct. By placing the file inside the AddOns folder, it will not automatically generate the NinjaScript code like what would happen if you placed it inside the Indicators or Strategies folder. For example:
Please let me know if I may be of further assistance.Code:namespace NinjaTrader.NinjaScript.Indicators { partial class MyClass : Indicator { public void doSomething() { } } }Michael M.NinjaTrader Quality Assurance
Comment
-
That's not exactly what I needed. What I want is:
Tried it and it works like a charm.Code:public partial class [B][COLOR=blue]Indicator[/COLOR][/B] : IndicatorRenderBase { public int SomeValue { get; set; } public void SomeMethod() { } }
Thanks!
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, Today, 06:46 AM
|
0 responses
8 views
0 likes
|
Last Post
by Mindset
Today, 06:46 AM
|
||
|
Started by M4ndoo, Yesterday, 05:21 PM
|
0 responses
12 views
0 likes
|
Last Post
by M4ndoo
Yesterday, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
15 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
82 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
47 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment