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

Comment