Hey guys!
I found a code for zero lag moving average, but i need another moving average, and cant figure out how to add it, since it keeps getting errors.
I’d like to add another longer period moving average with zero lag ofcourse.
This is the code that got 1 moving average:
//ZeroLag Fast MA:
PeriodF = 8
DataF = Close
lagF = ROUND((PeriodF-1)/2)
dF = (DataF+(DataF-DataF[lagF]))
F = average[periodF](dF)
RETURN F
Thanks for help! 🙂
LeoParticipant
Veteran
Error? I just copy paste your code and it works.