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

Smoothed MA (SSMA) for Amibroker (AFL)

Rating:
4 / 5 (Votes 2)
Tags:
amibroker, moving average

similar to MT4 MODE_SSMA

Similar Indicators / Formulas

Hull Moving Average (HMA)
Submitted by kaiji over 14 years ago
Beauty
Submitted by sbtc555 almost 11 years ago
Trend Scalping System
Submitted by esnataraj about 14 years ago
TD DeMarker Plane
Submitted by extremist almost 13 years ago
Guppy GMMA with "derived" Indicator
Submitted by dalmas about 14 years ago
Buff Volume Weighted Moving Averages
Submitted by kaiji over 14 years ago

Indicator / Formula

Copy & Paste Friendly
iPeriod=Param("Period", 5, 1);

ssma = MA(C, iPeriod);

for(i=iPeriod+1; i<BarCount; i++)
{
   iSum = ssma[i-1]*(iPeriod-1)+Close[i];
   ssma[i] = iSum/iPeriod;
}

Plot(ssma, "SSMA", ParamColor("Color", colorRed), ParamStyle("Style"));

6 comments

1. extremist

if u would have checked it u would have found tht it is same as Wilders average. Which is ready to use code in amibroker in average section.

anyways thanx for the logic…!

2. kelvinhand

Thank you very much for your finding.
So now we know

MT4 is Amibroker
= ===
LWMA ==> WMA
SSMA ==> Wilders

Publish out is to serve as record for future reference purpose.

3. extremist

ha ha ha…… :)

u remember……

4. kelvinhand

Yes, I got good memory.
Using internal command is always faster then script.

5. sourish

Can we get screen shots of the various AFLs posted here? Would be nice and easy to know more abt the functioning.. Thanks.

6. kelvinhand

It is good that you learn to load the MT4 historical data into amibroker and do the comparison yourself is more conclusive then i give you the screenshots.

Leave Comment

Please login here to leave a comment.

Back