PureBytes Links
Trading Reference Links
|
Hi All
Enclosed is a handly little explore afl for looking
a rate of change now with the new features in AB they can be stored to a watch
list for further research.
Its aimed at new users just cut and paste to auto
alnaysis window and hit the explore button ..
Regards David.
ps hows the afl area going ? if anyone is working
on it ??
I have a few dozen candle afl based on the
guide lines posted resently
Just waiting for somewhere to but em
:)
/* quarterlyreturnDavid
Holzgrefe6.05.2001*/
/* roc over 65 periods*/quarterlyreturn=
ROC(close,65);//
/* Volume filter */Volqty=ma(Volume,260) >
250000;
/* buy = quartly return over 25 % and annual volume
> .5 mill*/
buy = quarterlyreturn>25 AND strlen(
name() ) == 3And volqty;
sell = 0;
filter = buy;
numcolumns = 3;
column0 = close;column1format = 3.2;column1name = "Close";
column1 = quarterlyreturn;column1format = 3.2;column1name =
"Quarterlyreturn";
|