I have a parameter in strategy that is a signed integer (int) , but then in strategy analyzer, i can't enter negative value in the optimize box, such as -4. Why is this? Any workaround?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
int data can't be specified as negative
Collapse
X
-
Hello ssg10,
I am glad to help you.
The integer(int) has a Minimum value assigned to it, like the int cannot be less than 1 etc.
so a code will look like this
In the above code, the int value cannot be less than 1 (one).Code:[Description("")] [GridCategory("Parameters")] public int MyInput0 { get { return myInput0; } set { myInput0 = [COLOR=Red]Math.Max(1, value)[/COLOR]; } }
To change the same you just remove the Math.Max part. So a modified code of the above will be like
the above will let you put in any value.Code:[Description("")] [GridCategory("Parameters")] public int MyInput0 { get { return myInput0; } set { myInput0 = [B][COLOR=Blue]value[/COLOR][/B]; } }
If you have coded the strategy via the wizard, then please edit the same. In the User Defined Inputs box, assign a value like -9999 (mind the minus) in the Min field of the said int parameter.
Please let me know if I can be of any further help.
Regards,
Joydeep.JoydeepNinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
60 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
39 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
19 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
21 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
51 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment