Accumulation/Distribution Line (ADL)
Previous Topic  Next Topic 

Definition

Courtesy of www.stockcharts.com

Syntax
ADL()
ADL(IDataSeries inputData)

ADL()[int barsAgo]
ADL(IDataSeries inputData)[int barsAgo]


Return Type
double; Accessing this method via an index value [int barsAgo] returns the indicator value of the referenced bar.


Parameters

inputData

Indicator source data (?)


Examples

// Checks if ADL is rising
bool isRising = Rising(ADL());
Print("Is ADL rising? " + isRising);


Source Code
You can open up the indicator source code via the NinjaScript Editor.