PureBytes Links
Trading Reference Links
|
I assume you want to use the last bar value of the correlation .. so I
have to correct the previous code ..(which is wrong anyway since coor
is a vector)
--- In amibroker@xxxxxxxxxxxxxxx, "loveyourenemynow"
<loveyourenemynow@xxx> wrote:
>
>
> >
> > symlist = CategoryGetSymbols( categoryWatchlist, 2 );
> > Filter = Status("lastbarinrange");
> catnum=Param("Watch List Number", 0, 0, 256, 1);
> > for( i = 0; ( sym = StrExtract( symlist, i ) ) != ""; i++ )
> > {
> > Corr = Correlation( C, Foreign( sym, "C" ), 252 );
> if ( (corr[BarCount-1]>=0.75) ) CategoryAddSymbol( sym,
categoryWatchlist,catnum);
> > Clr = 32 + SelectedValue( Corr ) * 32;
> > AddColumn( Corr, sym, 1.2, ColorHSB( 128+Clr, 255, 255 ) , ColorHSB(
> > Clr, 255, 255 ) );
> > }
> >
>
> or you can just rank the results of the exploration from AA
> window,select the ones you want, right click and choose "Add selected
> to watch list"
>
> cheers
>
------------------------------------
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
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|