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

Unbounded Stochastic Momentum Index for Amibroker (AFL)

Rating:
5 / 5 (Votes 2)
Tags:
amibroker, oscillator

the Unbounded SMI values are allowed to go outside the -100 to 100 boundaries imposed by the standard SMI indicator.

Screenshots

Indicator / Formula

Copy & Paste Friendly
Periods=Param("Periods",15,2,100);
Smooth1=Param("Smooth1",3,1,100);
Smooth2=Param("Smooth2",3,1,100);
HH=HHV(Ref(H,-1),Periods);
LL=LLV(Ref(L,-1),Periods);
StoMom=100*EMA(EMA(C-0.5*(HH+LL),Smooth1),Smooth2)/
(0.5*EMA(EMA(HH-LL,Smooth1),Smooth2));
Plot(StoMom,_DEFAULT_NAME(),ParamColor("Color",ColorCycle));
PlotGrid(80,colorRed);
PlotGrid(0,colorLightGrey);
PlotGrid(-80,colorLightGrey);

1 comments

1. SADAI

Very interesting indicator to combine with other indicator to confirm the good entry

Leave Comment

Please login here to leave a comment.

Back