{***************************************************************************** Description : This Indicator plots Stochastic replicating the "Bline" long term Stochastic (35-10-1) Provided By : Compute Abilities (c) 2002 *****************************************************************************} Input: Price(Close), Length1(35), Length2(10), Length3(1), 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"); Plot3(OverBought, "OverBought"); Plot4(OverSold, "OverSold");