Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Ema

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    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?

    #2
    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

    Comment


      #3
      Originally posted by NinjaTrader_RyanM View Post
      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?
      Thank you for your quick reply. Instead of High in the example below

      double value = EMA(High, 20)[0];

      I want to use (High + Low + Close)/3.

      How do I do that?

      Comment


        #4
        Try this:
        double value = EMA(Typical, 20)[0];

        Typical does equal (High + Low + Close)/3

        Dan
        eDanny
        NinjaTrader Ecosystem Vendor - Integrity Traders

        Comment


          #5
          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


            #6
            Thank you Dan and Ryan. It works and I learnt a lot in the process.

            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 Geovanny Suaza  
            Started by Geovanny Suaza, 02-11-2026, 05:51 PM
            0 responses
            345 views
            1 like
            Last Post Geovanny Suaza  
            Started by Mindset, 02-09-2026, 11:44 AM
            0 responses
            103 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by Geovanny Suaza, 02-02-2026, 12:30 PM
            0 responses
            558 views
            1 like
            Last Post Geovanny Suaza  
            Started by RFrosty, 01-28-2026, 06:49 PM
            0 responses
            558 views
            1 like
            Last Post RFrosty
            by RFrosty
             
            Working...
            X