Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
wont compile, no bug in code?
Collapse
X
-
How come you are saying "the code is correct" if it isn't?Originally posted by james377 View PostI simply changed a formula but it says it has problems compiling, i have done nothing wrong at all, the code is correct yet it wont let me compile, please help.
please see picture
[ATTACH]8056[/ATTACH]
Comment
-
I'm hoping you've found your answer to this by now but if not.
Your Plot0.Set statement has multiple syntax errors.
The Syntax for an EMA is eitherthen you need to specify which bar you want to display. eg EMA(12)[0]Code:EMA(int period) EMA(IDataSeries inputData, int period)
You are not specifying the period when you say EMA[2]
It looks like you where trying for a Triple EMA 2 period EMA. So something like the following may work better.
Code:Plot0.Set(EMA(EMA(EMA(2),2),2)[0]);
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
581 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
338 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 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
554 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
552 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment