'myInput0' was created by the strategy wizard. it's not that I didn't try make the change.. when I tried to do the variable type change i got into code where wizard generated comments told me I should not be. I was scared off after trying to modity that off limits code and getting deeper and deeper into error messages. .
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
how do I change strategy variable 'myInput0' from integer to double?
Collapse
X
-
how do I change strategy variable 'myInput0' from integer to double?
how do I change strategy variable 'myInput0' from integer to double?
'myInput0' was created by the strategy wizard. it's not that I didn't try make the change.. when I tried to do the variable type change i got into code where wizard generated comments told me I should not be. I was scared off after trying to modity that off limits code and getting deeper and deeper into error messages. .Tags: None
-
Hello joemiller,
Thanks for the information.
So there are going to be two places that you will need to change the variable type in.
The first is in the Variables region like you mentioned.
The second is the Properties section of the code after OnBarUpdate()Code:#region Variables // Wizard generated variables private double myInput0 = 1; // Default setting for MyInput0 // User defined variables (add any user defined variables below) #endregion
Code:protected override void OnBarUpdate() { // Condition set 1 } #region Properties [Description("")] [GridCategory("Parameters")] public double MyInput0 { get { return myInput0; } set { myInput0 = Math.Max(1, value); } }JCNinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
307 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
199 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
186 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
275 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
229 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment