PureBytes Links
Trading Reference Links
|
Hello,
One of the formulaes I use in auto-analyser is:
/* Bullish 21/55-day MA crossover exploration */
mashort = ma( close, 21 );
malong = ma( close, 55 );
buy = filter = cross( mashort, malong );
sell = cross( malong, mashort );
numcolumns = 2;
column0 = mashort;
column0name = "21 day MA";
column1 = malong;
column1name = "55 day MA";
I got it off this list about 2 months ago. Is there
anyway I can alter the formulae so that is uses weekly
moving average crossovers rather then daily? (i.e. "21
weekly ma" and "55 weekly ma")
Kind regards
Russ
__________________________________________________
Do You Yahoo!?
Make a great connection at Yahoo! Personals.
http://personals.yahoo.com
|