Permission denied!

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

Jurik Moving Average for Amibroker (AFL)

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

Speed variant of Ma.

Screenshots

Similar Indicators / Formulas

Hull Moving Average (HMA)
Submitted by kaiji almost 15 years ago
Beauty
Submitted by sbtc555 over 11 years ago
Smoothed MA (SSMA)
Submitted by kelvinhand over 11 years ago
Trend Scalping System
Submitted by esnataraj over 14 years ago
TD DeMarker Plane
Submitted by extremist over 13 years ago
Buff Volume Weighted Moving Averages
Submitted by kaiji almost 15 years ago

Indicator / Formula

Copy & Paste Friendly
function JMA( array, per )
{  s1=0;
   for( i = 0; i <  per; i++ ) 
            s1 += (per-2*i-1)/2 * Ref(array,-i); 
   return MA(array,per) + (per/2+1)*S1 / ((per+1)*per);
}
k=Param("Period",15,1,100,1);
J=JMA(C,k);

3 comments

1. amon

This is not Jurik Moving Average for sure.

2. dineshpal

Add following line at end and this indicator plots a Line, But it is very different from the picture posted.
Plot( JMA, “JMA”, colorBlue, styleLine );

3. ford7k

HI
IT IS TRUE THE ORIGINAL JMA IS MUCH DIFFERENT FROM THE CODE GIVEN ABOVE.
CHECK THIS PICTURE.

]

http://i45.tinypic.com/35mp8g5.png
DONT BE MISGUIDED
FORD

Leave Comment

Please login here to leave a comment.

Back