EVOLUTION-MANAGER
Edit File: chaikinAD.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Chaikin Accumulation / Distribution</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for chaikinAD {TTR}"><tr><td>chaikinAD {TTR}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Chaikin Accumulation / Distribution</h2> <h3>Description</h3> <p>The Chaikin Accumulation / Distribution (AD) line is a measure of the money flowing into or out of a security. It is similar to On Balance Volume (OBV). Developed by Marc Chaikin. </p> <h3>Usage</h3> <pre> chaikinAD(HLC, volume) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>HLC</code></td> <td> <p>Object that is coercible to xts or matrix and contains High-Low-Close prices.</p> </td></tr> <tr valign="top"><td><code>volume</code></td> <td> <p>Vector or matrix of volume observations corresponding to the <code>HLC</code> object.</p> </td></tr> </table> <h3>Details</h3> <p>The AD line is similar to OBV; the difference is that OBV sums volume multiplied by +/- 1 if the close is higher/lower than the previous close, while the AD line multiplies volume by the close location value (CLV). </p> <h3>Value</h3> <p>A object of the same class as <code>HLC</code> and <code>volume</code> or a vector (if <code>try.xts</code> fails) containing the accumulation / distribution values. </p> <h3>Note</h3> <p>The Accumulation/Distribution Line is interpreted by looking for a divergence in the direction of the indicator relative to price. </p> <h3>Author(s)</h3> <p>Joshua Ulrich </p> <h3>References</h3> <p>The following site(s) were used to code/document this indicator:<br /> <a href="https://www.fmlabs.com/reference/AccumDist.htm">https://www.fmlabs.com/reference/AccumDist.htm</a><br /> <a href="https://www.metastock.com/Customer/Resources/TAAZ/?p=27">https://www.metastock.com/Customer/Resources/TAAZ/?p=27</a><br /> <a href="https://www.linnsoft.com/techind/accumulation-distribution">https://www.linnsoft.com/techind/accumulation-distribution</a><br /> <a href="https://school.stockcharts.com/doku.php?id=technical_indicators:accumulation_distribution_line">https://school.stockcharts.com/doku.php?id=technical_indicators:accumulation_distribution_line</a><br /> </p> <h3>See Also</h3> <p>See <code><a href="OBV.html">OBV</a></code>, and <code><a href="CLV.html">CLV</a></code>. </p> <h3>Examples</h3> <pre> data(ttrc) ad <- chaikinAD(ttrc[,c("High","Low","Close")], ttrc[,"Volume"]) </pre> <hr /><div style="text-align: center;">[Package <em>TTR</em> version 0.24.3 <a href="00Index.html">Index</a>]</div> </body></html>