[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: easylanguage help



PureBytes Links

Trading Reference Links

On Fri, 19 Mar 2004, relyn01@xxxxxxxxxxxx wrote:

> I'm attempting to write a simple indicator which uses the difference between two simple moving averages and plots the difference as one line. 
> I'd appreciate any help or advice on this. 

Inputs: Price(close), Len1(9), Len2(13);
plot1(XAverage(Price, Len1) - XAverage(Price, Len2));