Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Testing file
Collapse
X
-
Hello Emma1,
Thanks for your post.
You could expect to see something similar to the following in your chart when attaching that indicator.
That being said, lets try and figure out what is causing the error in your platform. Please follow the steps below to find out where the error is coming from.- Open NinjaTrader
- From the Control Center select the Tools menu--> select the Edit NinjaScript menu item--> select Indicator
- Select ANY indicator and double click on it (we need only to open and compile one script to see all compile errors for all files).
- A new window will appear and you will need to right click in the window and select Compile to compile the indicators.
- At the bottom of the window, a new section will appear where you can find the error locations.
- From there you have the option to comment out offending code sections, remove the complete indicator or debug it to be able to compile again.
Josh G.NinjaTrader Customer Service
-
Emma1,
Instead of using ".Set" you would use the assignment operator(=). You can read more about this in the Series<t> section of the help guide.
For example,
would beCode:Values[3].Set(Volume[0]);
Please also see the following help guide link to see the rest of the code breaking changes.Code:Values[3] = Volume[0];
Josh G.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
606 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
353 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
105 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
560 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
561 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment