Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 algospoke, Yesterday, 06:40 PM
            2 responses
            22 views
            0 likes
            Last Post algospoke  
            Started by ghoul, Today, 06:02 PM
            3 responses
            14 views
            0 likes
            Last Post NinjaTrader_Manfred  
            Started by jeronymite, 04-12-2024, 04:26 PM
            3 responses
            45 views
            0 likes
            Last Post jeronymite  
            Started by Barry Milan, Yesterday, 10:35 PM
            7 responses
            21 views
            0 likes
            Last Post NinjaTrader_Manfred  
            Started by AttiM, 02-14-2024, 05:20 PM
            10 responses
            181 views
            0 likes
            Last Post jeronymite  
            Working...
            X