PureBytes Links
Trading Reference Links
|
Hard to diagnose with the little information you provided. Can I assume
that SOME of the funds do display a value? You do not get a syntax
error? Is the value completely blank?
If so, then the problem may be with the specific issue that does not
display a value. I would go and investigate it....are there missing
values? Is the entire array Empty?
Sorry I can not be of more help.
Ken
-----Original Message-----
From: jbell5931 [mailto:jbell5931@xxxxxxxxx]
Sent: Friday, July 25, 2003 11:56 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Coding help
When I ran Ken Close's Headsup AFL module, some funds/stocks don't
display any value in the RSI/Stoc column. Any explanations are
appreciated.
Here's part of the code extracted from the HeadsUp module:
Filter = 1;
/*1a: Calculate 'fast' RSI/Stochastics (using 21/13 Stochastics AND
RSI-14)*/
Low1=LLV(C,21);
High1=HHV(C,21);
FastStoc=(EMA(100*(Close - Low1)/(High1 - Low1),13)/2) + (RSI(14)/2);
AddColumn(FastStoc,"RSI/Stoc",1.2);
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/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Free shipping on all inkjet cartridge & refill kit orders to US & Canada. Low prices up to 80% off. We have your brand: HP, Epson, Lexmark & more.
http://www.c1tracking.com/l.asp?cid=5510
http://us.click.yahoo.com/GHXcIA/n.WGAA/ySSFAA/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/
|