PureBytes Links
Trading Reference Links
|
Hi guys,
I need a help with Tradestation formula I want to translate to AFL,
basically it's RSI with Volatility bands applied, I dont' believe
AFL has coef and truerange function.
Thanks in advance,
Steven
Input: Coefdwn(2.1),Coefup(2.3);
Plot1((Average((RSI(Close,14)),6))+(Coefup*(Average(TrueRangeCustom
((RSI(Close,14)),(RSI(Close,14)),(RSI(Close,14))),15))),"Plot1");
Plot2((Average((RSI(Close,14)),6))-(Coefdwn*(Average(TrueRangeCustom
((RSI(Close,14)),(RSI(Close,14)),(RSI(Close,14))),15))),"Plot2");
Plot3((RSI(Close,14)),"Plot3");
IF CheckAlert Then Begin
If Plot1 Crosses Above Plot2 or Plot1 Crosses Below Plot2
or Plot1 Crosses Above Plot3 or Plot1 Crosses Below Plot3
or Plot2 Crosses Above Plot3 or Plot2 Crosses Below Plot3
Then Alert=TRUE;
End;
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Your own Online Store Selling our Overstock.
http://us.click.yahoo.com/rZll0B/4ftFAA/46VHAA/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/
|