/* Stoch RSI Steve */ /*Steve Karnish wrote:
"Roger Altman, William Blau, Stanley Kroll, and Tushar Chande have all improved on J. Welles Wilder’s Relative Strength Index. I believe the best of these derivative indicators is the Stochastic RSI. [...] This version is just one of many I use. I like substituting the numbers 3, 5, 8 & 13 in this formula. " Formula:*/ /* CCT StochRSI ** ** Originally developed by Steve Karnish ** http://www.cedarcreektrading.com ** ** AFL translation by Tomasz Janeczko ** ** Set scaling: Custom 0..100 ** Grid: 83/17 */ period = 13; G0=100*( ( RSI( period ) - LLV( RSI( period ) , period ) ) / ( ( HHV( RSI(period ) , period ) ) - LLV(RSI( period ), period ) ) ); Plot(G0,"StochRSI Steve ",2,4); Plot(83," ",7,4); Plot(17," ",7,4); //Plot(MA(C,21),"",10,4 | styleOwnScale); -----Original Message----- From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] Behalf Of markald3 Sent: Monday, December 03, 2007 5:22 PM To: amibroker@yahoogroups.com Subject: [amibroker] Re: Does any have suggestions on a good Oscillator ? I forgot to add the code that i worked up for it. You can adjust the periods in the parameter area. P = ParamField("Price field",-1); Periods = Param("Periods", 14, 2, 200, 1, 10 ); Plot( 100*(Close/MA(Close,(2*periods) + 1)-1), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") ); Mark --- In amibroker@yahoogroups.com, "markald3" <[EMAIL PROTECTED]> wrote: > > > Here is a link to MAM with some formulas towards the end. > > > http://www.actwin.com/kalostrader/MAM-Rev3.PDF > <http://www.actwin.com/kalostrader/MAM-Rev3.PDF> > > > > Mark >