Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Jma oscillator for Amibroker (AFL)
hii all of you this is jma oscillator, i found it some international website,i think its useful for us.
Screenshots
Similar Indicators / Formulas
Indicator / Formula
function JMA( array, per )
{
TN1=MA(array,per);
s1=0;
for( i = 0; i < per; i=i+1 )
{
s1=s1+((per-(2*i)-1)/2)*Ref(array,-i);
}
return TN1+(((per/2)+1)*S1)/((per+1)*per);
}
k=Param("Period",15,1,100,1);
J=JMA(C,k);
Plot( JMA(C,k), "JMA", colorBlue, styleLine );1 comments
Leave Comment
Please login here to leave a comment.
Back
Indicators based on Jurik is very smooth. This looks very raw