Hi,
As I'm trying to write my own RSI formula, it requires the previous RSI values as part of the calculation, for example, mathematically
nRSI = A * nRSI(-1) + B
In EFS, who would I do that? This requires recurrsive capability. Not sure how I can do it in a neat fashion. One way that I can think of is to use a global array to keep track of it. I'm wondering if there's a better way of doing it.
William
As I'm trying to write my own RSI formula, it requires the previous RSI values as part of the calculation, for example, mathematically
nRSI = A * nRSI(-1) + B
In EFS, who would I do that? This requires recurrsive capability. Not sure how I can do it in a neat fashion. One way that I can think of is to use a global array to keep track of it. I'm wondering if there's a better way of doing it.
William
Comment