Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Ema
Collapse
X
-
Ema
I am very new to Ninjatrader and hence this may seem trivial. I am trying to develop an Indicator using EMA. The EMA should be function of a variable and period. I know the EMA function already exists and am still not able to use it. It keeps giving me an error. Can you please tell me what is the syntax for using the EMA function?Tags: None
-
Hello nagaraj,
Welcome to the NinjaTrader forums!
You can see this link for all supported overloads for EMA:
Most likely there is an issue with the type of value you're passing into it. It must be a custom data series or other indicator.
What is it you've tried so far and what is the exact message you're getting?Ryan M.NinjaTrader Customer Service
-
Thank you for your quick reply. Instead of High in the example belowOriginally posted by NinjaTrader_RyanM View PostHello nagaraj,
Welcome to the NinjaTrader forums!
You can see this link for all supported overloads for EMA:
Most likely there is an issue with the type of value you're passing into it. It must be a custom data series or other indicator.
What is it you've tried so far and what is the exact message you're getting?
double value = EMA(High, 20)[0];
I want to use (High + Low + Close)/3.
How do I do that?
Comment
-
That particular calculation is already built into the platform as Typical, so you could write:
double value = EMA(Typical, 20)[0];
If it weren't there already, you would need to create a data series for it. This tutorial can walk you through setting up an example data series:
Ryan M.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
599 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
345 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
558 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
558 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment