PureBytes Links
Trading Reference Links
|
taotra wrote:
> I recently came across a technical indicator developed by Ian Copsey
> and mentioned in his book "Integrated Technical Analysis". It's
> called Relative Spread Strength (RSS) and is based on the strength
> of 2 MAs moving apart. The calculated spread of these 2 MAs are
> then passed through a regular RSI formula and smoothed. Range is
> from 0-100 as the RSI.
>
> Does anyone have any ideas how to recreate this formula in AFL?
> Your help would be greatly appreciated.
Don't know RSS, but from your description, it sounds like:
Raw=MA(C,Len1) - MA(C,Len2);
Val=RSIA(Raw,Len3);
Plot(Val,"RSS",colorWhatever,styleLine);
Owen Davies
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Get A Free Psychic Reading! Your Online Answer To Life's Important Questions.
http://us.click.yahoo.com/Lj3uPC/Me7FAA/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/
|