PureBytes Links
Trading Reference Links
|
Especially not TrueRangeCustom.
-----Original Message-----
From: stevenjaksic [mailto:stevenjaksic@xxxxxxxxx]
Sent: Monday, March 17, 2003 5:45 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] (unknown)
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;
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 ---------------------~-->
Make Money Online Auctions! Make $500.00 or We Will Give You Thirty Dollars for Trying!
http://us.click.yahoo.com/yMx78A/fNtFAA/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/
|