JK Slow for Amibroker (AFL)
Chris almost 15 years ago Amibroker (AFL)
The third in a set of three indicators; JK Fast, JK Base Line and JK Slow. Developed by Jeffrey Kennedy to help identify the waves in an Elliott Wave count they prove an excellent tool in depicting the direction and strength of a trend, is it impulsive or corrective. They prove useful on monthly, weekly and daily charts. All three indicators being displayed for each time frame separately. Reference to this indicator can be found at http://www.elliottwave.com/freeupdates/archives/2009/12/22/A-Trend-Analyzing-Tool-Reveals-If-Commodity-Strength-Will-Continue.aspx
Screenshots
Indicator / Formula
_SECTION_BEGIN(" JK SLOW");
EH= EMA(H,20);
EC= EMA(C,20);
EL= EMA(L,20);
R = ((HHV(EMA(C,20),5) - EMA(C,20)) /(HHV (EMA(C,20),5) -LLV (EMA(L,20),5))) *-100;
R1 = ((HHV(EMA(C,20),10) - EMA(C,20)) /(HHV (EMA(C,20),10) -LLV (EMA(C,20),10))) *-100;
R2 = ((HHV(EMA(C,20),15) - EMA(C,20)) /(HHV (EMA(C,20),15) -LLV (EMA(C,20),15))) *-100;
Plot(R, "Williams %R", colorPaleGreen, styleThick);
Plot(R1, "Williams %R", colorSeaGreen, styleThick);
Plot(R2, "Williams %R", colorDarkGreen, styleThick);
_SECTION_END();0 comments
Leave Comment
Please login here to leave a comment.