{***************************************************************************** Description : This Indicator plots Stochastic of RSI replicating the "BLine" shorter term ribbon (5-3-3) Provided By : Compute Abilities (c) 2002 *****************************************************************************} Input: Price(Close), Length1(5), Length2(3), Length3(3), OverBought(80), OverSold(20); Variables: KFast(0), KFull(0), DFull(0), LL(O), HH(0); LL = Lowest((High+Low)/2, Length1); HH = Highest((High+Low)/2, Length1); KFast = 100 * IFF(HH-LL=0,0,(((High+Low)/2) - LL)/(HH- LL)); KFull = Average(KFast, Length2); DFull = Average(KFull, Length3); Plot1(KFull, "Fast"); Plot2(DFull, "Slow");