| 
 PureBytes Links 
Trading Reference Links 
 | 
Hi all,
I have the following code for HVR NR4/IB in AB 4.0:
/* Connors and Raschke Historical Volatility System
    For further explanation, refer to "Street Smarts"
    from Connors and Raschke.
    Ported from Metastock code by Daniel Ervi           */
NumColumns = 5;
VolRatio =  StDev(log(C/Ref(C,-1)),5) / StDev(log(C/Ref(C,-1)),99);
Column0 =  VolRatio;
Column0Name = "VolRatio";
NR4Day = (H - L) < Ref(LLV(H-L,3),-1);
Column1 =  NR4Day;
Column1Name = "Nr4Day";
InsideDay = H < Ref(High,-1) AND Low > Ref(Low,-1);
Column2 =  InsideDay;
Column2Name = "Inside Day";
Column3 =  High + 0.125;
Column3Name = "Buy Stop";
Column4 =  Low - 0.125;
Column4Name = "Sell Stop";
Filter = VolRatio < 0.5 AND (NR4Day == 1 AND InsideDay == 1);
Buy = Filter; 
But, it doesn't work.  the graph is empty and there are no values 
displayed in the Interpretation section.  What am I doing wrong?  
Please help.
Thanks,
Pal Anand
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for Your HP, Epson, Canon or Lexmark
Printer at Myinks.com. Free s/h on orders $50 or more to the US & Canada. http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/l.m7sD/LIdGAA/qnsNAA/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/ 
 |