Announcement

Collapse
No announcement yet.

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];

    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.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        164 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Started by CaptainJack, 04-24-2026, 11:07 PM
        0 responses
        318 views
        0 likes
        Last Post CaptainJack  
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        246 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        350 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        179 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Working...
        X