PureBytes Links
Trading Reference Links
|
Dave,
I understand your frustration, and I understand Steve being hesitant
in revealing which indicators he uses in conjunction with StoRSI,
however I do wish he would give us a few to play around with that
compliment StoRSI trading, thus saving us weeks of work :-( .
In the meantime I have an optimized version of StoRSI you might want
to fiddle with. (I am assuming you already know how to work with
optimization.)
Regards
Jim
/* Stochastic - RSI , and ADX*/
RSIPer= Optimize("RSIPer", 8, 3, 15, 1);
EMAPer= Optimize("EMAPer", 8, 5, 20, 1);
StoRSI = EMA((scRSI(C, RSIPer) - LLV(scRSI(C,RSIPer),EMAPer)) / (HHV
(scRSI(C,8),8) - LLV(scRSI(C,8),8)),3)*100;
Buy = Cross(20,StoRSI) AND ADX(14)>20;
Sell= Cross(StoRSI,81) ;
Short = Sell;
Cover = Buy;
//Plot(Equity(),"Equity",1,1);
Plot(StoRSI,"StoRSI",1,1);
--- In amibroker@xxxxxxxxxxxxxxx, "Dave Merrill" <dmerrill@xxxx>
wrote:
> arrgghh.
>
> didn't I say often enough that I appreciate everything you and
others give
> here, that I'm not trying to diss you or your ideas, that I'm only
trying to
> learn, and that I'm investigating a lot on my own, not just trying
to sponge
> off the good works of others?
>
> you're right, I started this thread, asking why my results didn't
agree with
> what you showed. I asked that because I respected your work and
ideas, and
> wanted to know where I went wrong or what you really meant, not
because I
> wanted to disagree with you or show you up, and I said so,
repeatedly.
>
> dave
------------------------ 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/
|