PureBytes Links
Trading Reference Links
|
Larry,
Can you republish your StoRSI AB code or point to the message where
you described it. Thanks.
--- In amibroker@xxxxxxxxxxxxxxx, "Ken Close" <closeks@xxxx> wrote:
> Larry:
>
>
>
> You will already have seen in the code I published on holygrailism
list
> that StoRSI and RSI-Stochastics are two different animals.
>
>
>
> Looking at Stockcharts, their formula is what I call RSI-
Stochastics,
> using RSI in place of Price (as Jayson has shown below).
>
>
>
> I use the term "StoRSI" for the Chas Richards/Don Beasley combo of
>
>
>
> 1 / 2 of the stochastics using Price added to 1 / 2 of the RSI.
Chas
> uses specific periods for the stochastics and rsi periods, but
these can
> be generalized.
>
>
>
> Some others are using the term SRSI which is abbreviation to a
fault I
> believe, given the two somewhat conflicting definitions.
>
>
>
> The StoRSI is much "smoother" than the RSI-Stochastics, IMHO. Much
> better for intermediate, slower signals crossing a trigger line for
> example.
>
>
>
> Just FYI.
>
>
>
>
>
> Ken
>
>
>
> -----Original Message-----
> From: larypowell [mailto:larypowell@x...]
> Sent: Wednesday, November 19, 2003 12:44 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: RE: [amibroker] StochRSI
>
>
>
> Jayson, I appreciate the help.
>
>
>
> Larry M. Powell
>
>
>
> -----Original Message-----
> From: Jayson [mailto:jcasavant@x...]
> Sent: Tuesday, November 18, 2003 7:08 PM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: RE: [amibroker] StochRSI
>
>
>
> Larry,
>
>
>
> period=Param("Periods",6,5,50);
> smooth= 5;
> storsi =Nz( ( RSI( period) - LLV( RSI(period) ,period) ) / ( ( HHV(
> RSI(period) ,period) ) - LLV(RSI(period),period) ) );
>
> Plot(EMA(storsi,5),EncodeColor(colorWhite)+"Sto Rsi",colorBlue,1);
> Plot(EMA(EMA(storsi,5),smooth),"5 DMA",colorYellow,1);
> Plot(.30,"",colorRed,1);
> Plot(.80,"",colorGreen,1);
>
> Buy=Cross(EMA(storsi,5),EMA(EMA(storsi,5),smooth));
> Sell=Cross(EMA(EMA(storsi,5),smooth),EMA(storsi,5));
> PlotShapes(IIf(Buy,shapeUpArrow,shapeNone)
> ,colorBrightGreen,0,Graph0,-15);
> PlotShapes(IIf(Sell,shapeDownArrow,shapeNone),colorRed,0,Graph1,-
15);
> GraphXSpace=10;
>
>
>
> Regards,
>
> Jayson
>
> -----Original Message-----
> From: larypowell [mailto:larypowell@x...]
> Sent: Tuesday, November 18, 2003 10:01 PM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] StochRSI
>
> Does anyone have an afl for the StochRSI that is modeled after the
one
> used at stockcharts.com?
>
>
>
> Thanks,
>
>
>
> Larry M. Powell
>
>
> -------------------------------------------------------------------
--
> Eliminate annoying spam!
>
> My mailbox is protected by iHateSpam, the #1-rated spam buster.
> http://www.ihatespam.net
>
>
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> 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 the Yahoo!
> <http://docs.yahoo.com/info/terms/> Terms of Service.
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> 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 the Yahoo!
> <http://docs.yahoo.com/info/terms/> Terms of Service.
>
>
>
>
>
>
> Yahoo! Groups Sponsor
>
>
>
> ADVERTISEMENT
>
>
<http://rd.yahoo.com/SIG=12cgn58r4/M=267637.4116730.5333196.1261774/D
=eg
>
roupweb/S=1705632198:HM/EXP=1069307051/A=1853618/R=0/*http:/www.netfl
ix.
> com/Default?mqso=60178338&partid=4116730> click here
>
>
>
> <http://us.adserver.yahoo.com/l?
M=267637.4116730.5333196.1261774/D=egrou
> pmail/S=:HM/A=1853618/rand=536142083>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> 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 the Yahoo!
> <http://docs.yahoo.com/info/terms/> Terms of Service.
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/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/
|