I have an indicator that uses the average of every highest high for a series of data. The manual calculation look like:
Up_2 = (Highest(High, 1) + Highest(High, 2) + Highest(High, 3) + Highest(High, 4) + Highest(High, 5) + Highest(High, 6) + Highest(High, 7) + Highest(High, 8)) / 8;
As you can see, this is a manual calculation that requires entering the code and changing lengths. I would like to know if there is any way create a function or calculation that can be adjusted by changing an input , for example, like a moving average length can be simply changed. Any help or guidance would b greatly appreciated.
Up_2 = (Highest(High, 1) + Highest(High, 2) + Highest(High, 3) + Highest(High, 4) + Highest(High, 5) + Highest(High, 6) + Highest(High, 7) + Highest(High, 8)) / 8;
As you can see, this is a manual calculation that requires entering the code and changing lengths. I would like to know if there is any way create a function or calculation that can be adjusted by changing an input , for example, like a moving average length can be simply changed. Any help or guidance would b greatly appreciated.