Hi Barry, It's work! Thanks a lot.
Frank --- In [email protected], "Barry Scarborough" <[EMAIL PROTECTED]> wrote: > > This is just a guess. If you can compare the results with the program > it came from try this: > > N=9; M1=3; M2=3; > > RSV =(CLOSE-LLV(LOW,N))/(HHV(HIGH,N)-LLV(LOW,N))*100; > K = MA(RSV,M1); > D = MA(K,M2); > J = 3*K-2*D; > plot(J, "Stoch J", colorred); > > Barry > > --- In [email protected], "cstdc5588" <cstdc5588@> wrote: > > > > Hello Tomasz, could you please teach me how to coding Stochastic J% > of > > Indicator in AB? This is a commonly used formula.Is it possible to > offer > > and download? > > Please see below the indicator formula: > > > > {N:9; M1:3; M2:3} > > > > RSV:=(CLOSE-LLV(LOW,N))/(HHV(HIGH,N)-LLV(LOW,N))*100; > > K:SMA(RSV,M1,1); > > D:SMA(K,M2,1); > > J:3*K-2*D > > > > Thanks, > > Frank > > >
