PDA

View Full Version : Accumulation/Distribution (AD)


grav_rat
02-23-2007, 02:04 PM
I use AD in XTrader and would like to use it in NT6 and it would probably be a nice addition to the available indicators.Just a thought but I can't code it.
regards,
Accumulation/Distribution (AD)
The Accumulation/Distribution (AD) study attempts to quantify the amount of
volume flowing into or out of an instrument by identifying the position of the
close of the period in relation to that period’s high/low range. The volume for the
period is then allocated accordingly to a running continuous total.
Formula
AD = cumulative ((((Close – Low) – (High – Close)) / (High – Low)) * Volume))

NinjaTrader_Ray
02-24-2007, 04:41 AM
Added for next beta release.

Ray

asja.aa
02-20-2010, 02:02 AM
Using the ADL indicator, I would like to put a 20 SMA on the ADL line. I tryed to do it but the SMA is allways referring to price and not to the ADL.
Isn't there a way to manage it?

NinjaTrader_Austin
02-21-2010, 03:50 PM
asja.aa, NinjaTrader 7 will allow this type of behavior. You can "nest" as many indicators as you'd like into one final indicator. Unfortunately NinjaTrader 6.5 doesn't include this feature.

Another option would be to custom program this. To get a SMA of an ADL, you could do something like this:

double value = SMA(ADL(), 20)[0];