Composite Index for Amibroker (AFL)
kaiji over 15 years ago Amibroker (AFL)
Composite Index by Constance Brown. Formula can be found in the book origin. Details on use can be found also in “Technical Analysis for the Trading Professional” by Constance Brown.
By David Lee – david.lee.us [at] gmail.com
Indicator / Formula
Copy & Paste Friendly
/*
Reference to:
BreakThroughs in Technical Analysis
Keller, Bloomberg
Composite Index, Connie Brown
*/
A=RSI() - Ref(RSI(),-9)+ MA(RSI(3),3);
Plot(A,"Composite Index",colorPlum,styleLine);
Plot(MA(A,13),"MA13",colorRed,styleLine);
Plot(MA(A,33),"MA33",colorBlue,styleLine);
//PlotGrid(100, colorWhite);
//PlotGrid(0, colorWhite);2 comments
Leave Comment
Please login here to leave a comment.
what is buy and sell rule?
Paper on Composite Index is here: https://aeroinvest.com/COMPOSITE_INDEX.pdf bu Constance Brown himself.