Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Jasons Indicator Convergence Divergence (JICD) for Amibroker (AFL)
kaiji
over 14 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 4)
Tags:
oscillator, amibroker, exploration

This formula appeared in one of Daryl Guppies newsletters and has been converted to work with Amibroker. The JICD is one of Jason Mitchell’s personal indicators that was originally developed for the strong market conditions that were being experienced in late 2003

Similar Indicators / Formulas

rsi<30 and sort
Submitted by ali32b about 10 years ago
MACD Divergences 2
Submitted by filinta over 13 years ago
EMA,MACD,RSI EXPLORATION INDICATOR
Submitted by viralmehta about 10 years ago
CumRSI
Submitted by Xswingtrader almost 14 years ago
Awesome Oscillator (AO)
Submitted by zaroldo almost 14 years ago
Cross Prediction
Submitted by mauro24 almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
OscPds = Param("Osc periods", 10, 1, 260);
SmoothingPds = Param("Smoothing periods", 3, 1, 260, 3);
SignalPds = Param("Signal periods",5, 1, 260);

Trail = HHV(C - (L - HHV(C - (HHV(H, OscPds ) - LLV(L, OscPds)), OscPds)) / 2, OscPds);
JICD = EMA((C - Trail) / Trail * 100, SmoothingPds);
JICDSignal = EMA(JICD, SignalPds);

Plot(0, _DEFAULT_NAME(), colorRed, styleLine);
Plot(JICDSignal, _DEFAULT_NAME(), colorBlue, styleLine);
Plot(JICD, _DEFAULT_NAME(), colorRed, styleLine);

Filter = JICD > Trail AND Cross(JICDSignal, Trail);
AddColumn(C, "Close");

0 comments

Leave Comment

Please login here to leave a comment.

Back