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 ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
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
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
Leave Comment
Please login here to leave a comment.
Back
This is not Jurik Moving Average for sure.
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 );
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