PureBytes Links
Trading Reference Links
|
Hi bro and Sis,
The following basic coding of ABI, ADLine and AD Ratio do not work with yahoo finance data (blank chart):
ADLine
Difference = ( AdvIssues() - DecIssues() )/ ( UncIssues() + 1 );
DiffSqrt = IIf( Difference > 0, sqrt( Difference ), - sqrt( - Difference ) );
ADLine = Cum( DiffSqrt );
ABI
function AbsoluteBreadthIndex()
{
return AdvIssues() - DecIssues();
}
Plot ( AbsoluteBreadthIndex(), _DEFAULT_NAME(), ParamColor("Color", ColorCycle ) );
ADRatio
Plot ( AdvIssues()/DecIssues(), _DEFAULT_NAME(), ParamColor( "Color", ColorCycle ) );
I would appreciate if someone re-code the formula for index and individual stock using yahoo finance data. Thanks for your help.
GBU
kethek
Never miss a thing. Make Yahoo your homepage.
__._,_.___
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
__,_._,___
|