PureBytes Links
Trading Reference Links
|
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 amibroker@xxxxxxxxxxxxxxx, "cstdc5588" <cstdc5588@xxx> 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
>
------------------------------------
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 NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|