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 SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
35 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
12 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
18 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
20 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment