Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Using EMA in an array

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

    Using EMA in an array

    Hi ,

    I am trying to use EMA function to enter values in an array in the following way
    for (i=-24 ;i==0;i++)
    {
    EMA_val[i]=EMA(480)[i];
    EMA_sum[1]+=EMA_val[i];
    }

    getting an error saying that I am trying to use a field like a mathod , I looked in documantion and I am using the script as I should.

    Can someone explain what I am doing worng.

    Thanks

    #2
    Hello,

    Since you are using [indx], I assume you are trying to enter values that you can then access later via bar references. Here is a better way to do it:
    DenNinjaTrader Customer Service

    Comment


      #3
      Hi Ben,

      I tried to do what you instructed but , I am stil l getting the same error when compiling. I attached a screen shot of what I see.

      Thanks.
      Attached Files

      Comment


        #4
        Hello Sharkie,

        Ben's suggestion was to create a DataSeries object.
        This tutorial may help illustrate this concept.

        Create a data series and you could then run sum method against the data series you created.



        Using arrays is outside of NinjaScript support. I did notice you're trying to access negative index values. If you pursue this array approach, this is one thing to change. Current bar is accessed with index [0]. The bar prior to this (on the left) is accessed with [1]
        Close[0]
        Close[1]
        Ryan M.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        173 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Started by CaptainJack, 04-24-2026, 11:07 PM
        0 responses
        328 views
        0 likes
        Last Post CaptainJack  
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        252 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        354 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        181 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Working...
        X