PureBytes Links
Trading Reference Links
|
Fred,
A method to determine what the price might be when StoRsi is above 90
or below 10.
TASC published a Reverse RSI that TJ coded into AFL (in members area).
Using the parameters box you can use the slider to adjust the RSI and
identify potential bottoms and tops.
I would like to do the same with StoRsi, can you help?
Thanks
Jim
--- In amibroker@xxxxxxxxxxxxxxx, "Fred" <ftonetti@xxx> wrote:
>
> This ? ... This what ? ... A method to determine what move in price
> is required to make some indicator flip ?
>
> --- In amibroker@xxxxxxxxxxxxxxx, "jim_trades_stocks" <jnk1997@>
> wrote:
> >
> > OK OK,
> >
> > Superbowl Sunday was the wrong time to post a serious question,
so
> > here goes again.
> >
> > Anyone know how to code this?
> >
> > Thanks in advance.
> >
> > Jim
> >
> >
> >
> >
> > --- In amibroker@xxxxxxxxxxxxxxx, "jim_trades_stocks" <jnk1997@>
> > wrote:
> > >
> > > Many months ago the Reverse RSI was published in TASC. I have
> found
> > > this adjustable indicator to be very useful for me.
> > >
> > > Has anyone re-coded the StoRsi as an adjustable Reverse StoRsi?
> > >
> > > This is the regular StoRsi I am using:
> > >
> > >
> > > UpperLine = 90;
> > > LowerLine = 10;
> > >
> > > Plot( 100, "", colorBlue, styleNoDraw);
> > > Plot( 0, "", colorBlue, styleNoDraw);
> > > Plot( UpperLine, "Upper Level", colorBlue, styleLine);
> > > Plot( LowerLine, "Lower Level", colorBlue, styleLine);
> > >
> > > r = RSI(8);
> > > StoRSI = EMA(( r - LLV( r, 8 )) / (( HHV( r, 8 )) - LLV( r,
> 8 )),
> > 3 )
> > > * 100;
> > > Plot( StoRSI , "StoRSI", colorBlack, styleLine);
> > > GraphXSpace = 2;
> > >
> > > Buy = Cross( StoRSI, LowerLine );
> > > Sell = Cross( StoRSI, UpperLine );
> > >
> >
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~->
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.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:
http://docs.yahoo.com/info/terms/
|