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

Double SMI (stochastic Momentum Index) for Amibroker (AFL)

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

This indicator let you visualize the UPs and downs of the SMI (daily in red/green) and the weekly (darkBlue and LightBlue).
Good for sinaling que strenght of the market.

Screenshots

Similar Indicators / Formulas

Stochastic (Generic)
Submitted by walid over 13 years ago
BollingerLine indicator
Submitted by Dryden about 12 years ago
Combination MACD RMO ICHIMOKU
Submitted by dovanquang0404 almost 11 years ago
MACD
Submitted by sal over 13 years ago
4 MACD for optimisation
Submitted by DOMINATOR almost 14 years ago
Stochastic (Generic) for Amibroker
Submitted by 123flex456 over 12 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Double SMI"); 
SetChartOptions(3,chartShowDates);
SetChartOptions(0,chartShowArrows);
SetChartBkColor(ParamColor("Outer Panel",colorPaleBlue)); 
SetChartBkGradientFill(ParamColor("Upper Chart",1),ParamColor("Lower Chart",1)); 

LookBackD 	= Optimize("LookBackD",Param("LookbackD", 10, 1, 100 ),1,30,1);
Smooth1D  	= Optimize("Smooth1D",Param("Smooth1D", 3, 1, 100 ),1,30,1);
Smooth2D  	= Param("Smooth2D", 5, 1, 20 );
TriggerD  	= Param("SignalD", 3, 1, 10);
PP 		= ParamField("Price field",-1);
SMILevel 	= Param("Level", 60, 10, 60, 10);

HHD = HHV( H, LookBackD );
LLD = LLV( L, LookBackD );
HHW = HHV( H, 5*LookBackD );
LLW = LLV( L, 5*LookBackD );

StoMomD = 100 * EMA( EMA( PP - 0.5 * ( HHD + LLD ), Smooth1D ), Smooth2D ) / 
( 0.5 * EMA( EMA( HHD - LLD, Smooth1D ), Smooth2D ) );
StoMomW = 100 * EMA( EMA( PP - 0.5 * (HHW + LLW), 5*Smooth1D ), Smooth2D ) / 
( 0.5 * EMA( EMA( HHW - LLW, 5*Smooth1D ), Smooth2D ) );


Plot (StoMomD,"",IIf(StoMomD> Ref(StoMomD,-1),colorBrightGreen,colorRed), styleThick);
Plot (StoMomW,"",IIf(StoMomW> Ref(StoMomW,-1),colorLightBlue,colorDarkBlue), styleThick);
Plot(0,"",colorOrange, styleLine);
Plot( SMILevel,"",colorBlack,styleDashed);
Plot(-SMILevel,"",colorBlack,styleDashed);
Plot( 80,"",colorOrange,styleLine);
Plot(-80,"",colorOrange,styleLine);

2 comments

1. monirul islam

Thanks

2. EliStern

Could you please provide Buy & Sell?

Leave Comment

Please login here to leave a comment.

Back