PureBytes Links
Trading Reference Links
|
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);
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges & Refill Kits for Your Epson at Myinks.com
Free shipping on orders $50 or more to the US and Canada.
http://www.c1tracking.com/l.asp?cid=5705&lp=home/epson.asp
http://us.click.yahoo.com/brYXfA/_xWGAA/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/
|