PureBytes Links
Trading Reference Links
|
Rich,
>From the help menu.....
SYNTAX correlation( ARRAY1, ARRAY2, periods )
RETURNSARRAY
FUNCTION Calculates correlation between ARRAY1 and ARRAY2 using periods
range
EXAMPLEcorrelation( close, ref( close, -5 ), 5 ); - this calculates
correlation between close price and and close price 5 days back
//Load into Indicator Builder
lookback=10;
P=Foreign("^NDX","C");//select your Index or ticker
Plot(Correlation(C,p,lookback),"Correlation",colorRed,styleLine);
which ever chart is opened will show the correlation between that ticker and
the ticker in the P variable
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Make Money Online Auctions! Make $500.00 or We Will Give You Thirty Dollars for Trying!
http://us.click.yahoo.com/yMx78A/fNtFAA/i5gGAA/GHeqlB/TM
---------------------------------------------------------------------~->
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
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|