PureBytes Links
Trading Reference Links
|
<FONT
color=#0000ff>From post of 2/25/2004 by taotra<SPAN
class=442580615-10042004> subject: Re: STOC
RSI
<FONT face=Arial
size=2>
<FONT
face="Courier New">Traderix,below is the code I use. I cross the
StochRSI with a double EMA. Change the default settings to suit your
purpose. The ones below (30,5,5) I use for 10-min data. Since I
trade in RT, I prefer faster settings (thereby accepting more false signals,
which I weed out with other indicators). Gernot//Stochastic
RSI Crossoverperiod=Param("Period
1",30,5,200,1);period2=Param("Period
2",5,2,50,1);smooth=Param("Smoothing",5,2,20,1);col1=Param("Color
StochRSI",6,1,54,1);col2=Param("Color Sm.
EMA",7,1,54,1);storsi=((RSI(period)-LLV(RSI(period),period))/((HHV(RSI(period),period))-LLV(RSI(period),period)))*100;Plot(EMA(storsi,period2),"StochRSI",col1,styleLine);Plot(EMA(EMA(storsi,period2),smooth),"Smoothed
EMA",col2,styleLine);Plot(10,"",colorDarkRed,1+styleThick);Plot(20,"",colorRed,1);Plot(50,"",colorWhite,1);
Plot(80,"",colorGreen,1); Plot(90,"",colorDarkGreen,1+styleThick);
GraphXSpace =
1.5;Buy=Cross(EMA(storsi,period2),EMA(EMA(storsi,period2),smooth));Sell=Cross(EMA(EMA(storsi,period2),smooth),EMA(storsi,period2));PlotShapes(IIf(Buy,shapeUpArrow,shapeNone)
,colorBrightGreen,0,Graph0,-15);PlotShapes(IIf(Sell,shapeDownArrow,shapeNone),colorRed,0,Graph1,-15);AlertIf(
Buy, "SOUND C:\\Amibroker\\Sounds\\buy alert.wav", "Audio alert", 1
);AlertIf( Sell, "SOUND C:\\Amibroker\\Sounds\\sell alert.wav", "Audio
alert", 2 );Title=Name()+"
"+EncodeColor(col1)+"StochRSI
"+EncodeColor(col2)+"Smoothed EMA";<SPAN
class=442580615-10042004> d
From: Steve Almond
[mailto:steve2@xxxxxxxxxxxxxxxxxxxx] Sent: Saturday, April 10, 2004
4:25 AMTo: amibroker@xxxxxxxxxxxxxxxSubject: Re:
[amibroker] Where are you from?
----- Original Message ----- From: "ronbo"
<ronbo@xxxxxxxxxxxxxx>To: <amibroker@xxxxxxxxxxxxxxx>Sent:
Saturday, April 10, 2004 1:55 AMSubject: RE: [amibroker] Where are you
from?........ right now the one with the most> accurate
calls is the Stochastic RSI Crossover by Gernot posted here a few>
weeks ago, with the periods of 8,3,3.>Ron,Despite a
search of Purebytes, I can't find the post to which you refer. Canyou
point me in the right
direction?Thanks,SteveSend BUG
REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
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
Yahoo! Groups Links
To visit your group on the web, go to:http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|