Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Accumulation / Distribution for Metastock
Accumulation Distribution Indicator or ADL (Accumulation Distribution Line) is a volume based indicator which was essentially designed to measure underlying supply and demand. It accomplishes this by trying to determine whether traders are actually accumulating (buying) or distributing (selling). This is accomplished by plotting a running total of each period’s Money Flow Volume. ADL can reveal divergences between volume flow and actual price to primarily either affirm a current trend or to anticipate a future reversal.
Indicator / Formula
ShortMA:= input("Enter shorter moving average periods",3,10,3); LongMA:= input("Enter longer moving average periods",10,30,10); mov( ad(), ShortMA, E) - mov( ad(), LongMA,E);
mov(cum((((C-L)-(H-C))/(H-L))*V),3,E)-mov(cum((((C-L)-(H-C))/(H-L))*V),10,E)
0 comments
Leave Comment
Please login here to leave a comment.
Back