Thanks.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Indicator with numerous parameters
Collapse
X
-
Indicator with numerous parameters
If I have written an indicator that has numerous parameters, how do I write an overide function for it that has only say 0 or 1 parameters and sets defaults for all the others, so that when a user wants to include that indicator in their code they don't have to list all the parameters every time.
Thanks.Tags: None
-
I cant give you a definitive answer, but if you locate the TS SuperTrend indicator, and look at the code .. v2.3 (maybe 2.2 also) has a bool series that can be accessed in a strategy != 1 or -1 for uptrend downtrend ... this might be a start to locate thatOriginally posted by annettes View PostIf I have written an indicator that has numerous parameters, how do I write an overide function for it that has only say 0 or 1 parameters and sets defaults for all the others, so that when a user wants to include that indicator in their code they don't have to list all the parameters every time.
Thanks.
TJ
Comment
-
Thanks Trader.Jon. I found the indicator you were referring to, but could not find the type of code I am looking for. Thanks for putting me onto that indicator though. It looks great!
Can anyone else help with this question please. What I really need to know is where to put the code for the override.
Thanks.
Comment
-
How about an enum in the Variables section (Say, Model1, Model2, Model3), then assign the values to the variables you want using switch/break? Not sure if you would put in Initialize(), OnStartUp(), or OnBarUpdate(), though. Try it in Initialize() and see how it goes.
Comment
-
Good idea about the enum, a helpful sample is located here - http://www.ninjatrader.com/support/f...ead.php?t=3420
Comment
-
I don't think you quite understand what I am asking. I probably didn't explain it very well. I am not asking about the contents of the override function, but where to define it. The main function definition is in the part of the code generated by NinjaScript - i.e. the part we can't change. So if I want to write an alternative definition, with fewer parameters, where do I put it?
Thanks.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by sjsj2732, 03-23-2026, 04:31 AM
|
0 responses
42 views
0 likes
|
Last Post
by sjsj2732
03-23-2026, 04:31 AM
|
||
|
Started by NullPointStrategies, 03-13-2026, 05:17 AM
|
0 responses
295 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
290 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
135 views
1 like
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
98 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|

Comment