Probably a noob question, but any help will be appreciated.
I'm trying to translate some simple Easy Language code into AFL, but I think I'm having issues with recursivity and initial conditions. I have read other posts on this matter, and I understand that AFL computes everything in an array in 1 pass, with no "current bar" concept (unless you use a for loop).
But my results were very different than the ones I got with the Multicharts trial version.
After reading some posts here, I found that my code wasn't recursive and I was just filling Quadrature will the contents of 0.2*VAlue3 + 0
I understand I would probably have to use the SUM function, but I don't know how exactly. Could someone please give me a hint to put me in the right track? I guess there is a way to do this without using for... loops.