Alternatively, add another attribute to the parameter that makes it optional? or use the optional parameter C# syntax.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Indicator constructor overload
Collapse
X
-
Indicator constructor overload
Many of my indicators have parameters that are formatting based, such as opacity, etc. Is there away to overload the constructor of an indicator so that I don't have to provide those parameters and they can just use their default values?
Alternatively, add another attribute to the parameter that makes it optional? or use the optional parameter C# syntax.Last edited by GrumpyTrader; 09-29-2015, 02:24 PM.Tags: None
-
Hi GrumpyTrader,
I am not aware of a way in C# to call a method or function without the defined overloads.
However, you could make a copy of the indicator that hard codes these instead of making them public inputs.
This thread is also open to anyone who may know of a way to accomplish this and would like to contribute.Chelsea B.NinjaTrader Customer Service
-
Hi GrumpyTrader,Originally posted by GrumpyTrader View PostMany of my indicators have parameters that are formatting based, such as opacity, etc. Is there away to overload the constructor of an indicator so that I don't have to provide those parameters and they can just use their default values?
Alternatively, add another attribute to the parameter that makes it optional? or use the optional parameter C# syntax.
Try removing the "[NinjaScriptProperty]" tag from in front of the properties you don't want to pass to the indicator.
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
14 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
48 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment