PureBytes Links
Trading Reference Links
|
Hi, Jason,
I would like to use your Stochastic Rsi formula for Spreads.
Is it possible to adapt it ?
spread = Foreign("EDZ03", "C") - Foreign("EDU03", "C" );
Thxs a lot for your help.
Daniel
> period=Param("Periods",6,5,50);
> smooth= 5;
> storsi =( ( 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);
>
>
> Regards,
> Jayson
> -----Original Message-----
> From: mleonsprint [mailto:mleonsprint@x...]
> Sent: Thursday, July 24, 2003 1:45 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Stochastic Rsi
>
>
> Does anyone have the formula to the Stochastic Rsi?
>
> Thanks for your help
> Mark
>
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
>
>
> 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! Terms of
Service.
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges & Refill Kits for Your Epson at Myinks.com
Free shipping on orders $50 or more to the US and Canada.
http://www.c1tracking.com/l.asp?cid=5705&lp=home/epson.asp
http://us.click.yahoo.com/brYXfA/_xWGAA/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/
|