Hi I have received some Amibroker code but I cant get it to work, 
could someone advice me how to do this?

It is made up of a function, and it works as a smooth moving average.
It returns an array, and I suppose I want to plot this array?



function Smoother(inputArray, period, inertia)
{
resultArray = Cum(0);

//CODE REMOVED


if (loopParam < 30)
SmoothValue = Null;
SmoothValueBuffer[shift] = SmoothValue;
resultArray[resultArrayIndex++] = SmoothValue;
}

return resultArray;
}


Reply via email to