Notifications
Clear all

KDJ Indicator

1 Posts
1 Users
0 Likes
1,591 Views
Mike
 Mike
(@vanguardai)
Posts: 70
Co-Founder Admin
Topic starter
 

The KDJ Indicator is similar to the Stochastics Oscillator with an additional J line. The indicator issues a strong buy signal if the K & D line crosses up and the J line came from below 20. The opposite is true that it issues a strong sell signal if the D line crosses below the K line and the J line came from above 80 level.

 

// KDJ Indicator

Set K = SOPK(14, 3, 3, SIMPLE)
Set D = SOPD(14, 3, 3, SIMPLE)
Set J = (K*3)-(D*2)
Plot(K, Line,red, KDJ)
Plot(D, Line,dodgerblue, KDJ)
Plot(J,Line,Green,KDJ)
plot(80,line,white,KDJ)
plot(20,line,white,KDJ)

1630934723-kdjURC.png
 
Posted : 06/09/2021 9:25 pm
Share: