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

GAMS Oscillator Indicator for Amibroker (AFL)

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

Indicator based on Plug-in Nirvana’s GMMA 2.0.
(http://www.nirvanasystems.com/oti/tradingsolutions/plugins/GMMA2.asp)

The GAMS Oscillator measures the difference between the sets of averages. If
GAMS is above zero, the Trend is Up. Below zero—the Trend is Down.

The Signals generated by GAMS can be used to automatically identify early Trend reversals.

Screenshots

Similar Indicators / Formulas

Febo RSI ..real indicator
Submitted by abhinavsingh over 12 years ago
Trading Volume Statistic
Submitted by tuanstock1 almost 10 years ago
Ergodic Oscillator
Submitted by dljtrader over 13 years ago
3 Days Track
Submitted by janet0211 almost 14 years ago
Chande Momentum Oscillator
Submitted by klimpek over 13 years ago
BoH Risk Aversion Indicator
Submitted by genkumag over 12 years ago

Indicator / Formula

Copy & Paste Friendly
FastMA = Param("Fast EMA",3,3,50,1);
SlowMA = Param("Slow EMA",8,3,50,1);
StdPer = Param("Period Stdev",15,3,50,1);
Sep    =  OscP(FastMA,SlowMA);
Gams 	= (Sep - EMA(Sep,StdPer))/StDev(Sep,StdPer);
ColorGams = IIf(Gams<0,colorPink,colorPaleGreen);

Plot(Gams,"GAMS Oscillator",colorRed,StyleLine);
Plot( 1, "", colorGams, styleArea | styleOwnScale | styleNoLabel, 0, 1 );

2 comments

1. lovebliss

Great indicator by itself! However, is it possible to turn it into a mutliple timeframe indicator? The matching of higher timeframes will make it even more reliable…

2. Rakesh Kumar

Very nice indicator, gives accurate result very early. Great Job.

Leave Comment

Please login here to leave a comment.

Back