PureBytes Links
Trading Reference Links
|
A few more questions
1. Since the a/d applies to a group of stocks, Is there a difference
in the way it is typed or pasted in? Does it go on the indicator
builder screen, the same as other formulas? How do you designate
which stocks to consider?
2. What is the proceedure for making it apply to a specific group of
stocks? e.g. NYSE,NASDQ or better a watch list?
3. I am assuming that if someone want the traditional line, it would
be easy enought to change the formula? as below
Difference = ( AdvIssues - DecIssues)
ADLine = Cum( DiffSqrt );
Clyde
--- In amibroker@xxxxxxxxxxxxxxx, "Graham" <gkavanagh@xxxx> wrote:
> From the help screens
>
> Advance-Decline line (AD-Line)
> Line measuring advances and declines that reflects market breadth.
In its
> simplest form ADLine is a summation over time of the net daily
difference
> between the number of advancing issues and the number of declining
issues.
> AmiBroker uses slightly improved formula which takes into account
also
> number of unchanged issues. The exact AFL formula for AmiBroker's
ADLine is:
>
> Difference = ( AdvIssues() - DecIssues() )/ ( UncIssues() + 1 );
> DiffSqrt = IIF( Difference > 0, sqrt( Difference ), - sqrt( -
Difference )
> );
> ADLine = Cum( DiffSqrt );
>
> This is a classical indicator which tends to give a good reading
of the
> overall strength of the market. A break in the A/D line usually
proceeds a
> break in prices. Look for non-confirmation and divergence.
>
> See also AFL Function reference: AFL Function: adline()
>
> Cheers,
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|