PureBytes Links
Trading Reference Links
|
Thanks, Stephane. But I see no difference between
CCIX and CCI ?!?
--- Stephane Carrasset <nenapacwanfr@xxxxxxxxx> wrote:
>
>
>
>
> function MeanDev( array, mean, range )
> {
> result = 0;
>
> for( i = range ; i < BarCount; i++ )
> {
> result[ i ] = 0;
> // the mean is not 'moving' over the range
> (outside the loop)
> tm = mean[ i ];
> for( j = 0; j < range; j++ )
> {
> result[ i ] = result[ i ] + abs( array[ i -
> j ] - tm );
> }
>
> result[ i ] = result[ i ]/range;
> }
>
> return result;
> }
>
> n = 20;
>
> SMATP = MA(Avg,n);//1,2
>
> MD = MeanDev( Avg, SMATP, n );
>
> CCIx = (Avg - SMATP) / (0.015 * MD);//5,6,7
>
> Plot(CCIx,"CCIx",colorGreen,styleLine);
>
> Plot(CCI(n),"CCI",colorRed,styleLine);
>
> > Anyone would like to share the formular for CCIE
> of
> > metastock in AB or MS format ?
> >
> > many thanks
> >
> >
> >
> >
> > __________________________________
> > Do you Yahoo!?
> > Make Yahoo! your home page
> > http://www.yahoo.com/r/hs
>
>
>
>
__________________________________
Do you Yahoo!?
Yahoo! Small Business - Try our new resources site!
http://smallbusiness.yahoo.com/resources/
------------------------ Yahoo! Groups Sponsor --------------------~-->
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 other support material please check also:
http://www.amibroker.com/support.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/
|