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

CS1502 & NT1503 using multi-time frame

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

    CS1502 & NT1503 using multi-time frame

    Hi,

    This error is occurring in OBU in the following line:

    double Last2 = SUM(Closes[1][0],Period)[0];

    Thanks

    #2
    Please try passing in a series into SUM and not just one double value:

    double Last2 = SUM(Closes[1], Period)[0];
    BertrandNinjaTrader Customer Service

    Comment


      #3
      Bertrand,

      Your suggestion does work. But now I have a slightly different question as I'm using a natural log and I'd like to create a moving average for that natural log. I'm getting the same error message. Thanks

      double ratioln = Math.Log(Closes[0][0]/Closes[1][0]);
      double logmaValue = SUM(ratioln,Period)[0] / Period;

      Comment


        #4
        Right, your ratioIn would not work as input series for the SUM method - it expects a series and not a single double value that would not have any historical data points to offer. If you create a custom Data Series here for the ratioIn and then pass this series into it would work.

        BertrandNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by trilliantrader, Today, 08:16 AM
        0 responses
        3 views
        0 likes
        Last Post trilliantrader  
        Started by AttiM, 02-14-2024, 05:20 PM
        9 responses
        174 views
        0 likes
        Last Post NinjaTrader_BrandonH  
        Started by funk10101, Today, 08:14 AM
        0 responses
        2 views
        0 likes
        Last Post funk10101  
        Started by adeelshahzad, Today, 03:54 AM
        1 response
        13 views
        0 likes
        Last Post NinjaTrader_BrandonH  
        Started by RookieTrader, Today, 07:41 AM
        1 response
        5 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Working...
        X