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

Using DataSeries as input to a function

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

    Using DataSeries as input to a function

    I extracted this calc of Standard Deviation from iVWAP. The 1st parameter is an array. I have tried to change it to IDataSeries to pass it a DataSeries instead but my indicator comes up blank. Is there a way to pass it a DataSeries rather than have to copy the data to an array first? (I changed the .Count to CurrentBar-1 in my test)

    Code:
     private double StandardDeviation(ArrayList array, double avg)                
            {
                int x = 0;
                double sd = 0;
                while (x < array.Count)
                {
                    sd += (((double)array[x] - avg) * ((double)array[x] - avg));
                    x++;
                }
                if (sd > 0)
                    sd = System.Math.Sqrt(sd / (array.Count));
                return sd;
            }

    #2
    Hello,

    Thanks for your forum post.

    This is how SMA method does it, cant think of any reason it shouldn't work for you.

    public SMA SMA(Data.IDataSeries input, int period)
    {

    }

    Let me know if I can be of further assistance.

    Comment


      #3
      Originally posted by NinjaTrader_Brett View Post
      Hello,

      Thanks for your forum post.

      This is how SMA method does it, cant think of any reason it shouldn't work for you.

      public SMA SMA(Data.IDataSeries input, int period)
      {

      }

      Let me know if I can be of further assistance.


      It doesn't work. I just went back to using an array.

      Comment


        #4
        Hello,

        I discussed this with Bertrand and looks like you need to create a separate indicator to house this. As they all provide iDataSeries interface by default. This needs to be whithen the confines of a separate indicator to allow you to do this. So you would have an indicator that just operates as a function/method if you wanted to further persue this.

        Let me know if I can be of further assistance.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by suroot, 02-25-2017, 04:43 AM
        11 responses
        2,546 views
        0 likes
        Last Post Zilvercat  
        Started by Rogers101, 05-05-2024, 11:30 AM
        16 responses
        50 views
        0 likes
        Last Post Rogers101  
        Started by ninza33, Today, 12:31 PM
        2 responses
        9 views
        0 likes
        Last Post ninza33
        by ninza33
         
        Started by Bobin, 03-12-2024, 08:51 AM
        15 responses
        481 views
        0 likes
        Last Post fiddich
        by fiddich
         
        Started by Skifree, Today, 11:21 AM
        4 responses
        15 views
        0 likes
        Last Post Skifree
        by Skifree
         
        Working...
        X