Skip to main content

Jma oscillator for Amibroker (AFL)

gaurav918 about 15 years ago Amibroker (AFL)

  • Rating:
    5 / 5 (Votes 1)
  • Tags:
    amibroker

hii all of you this is jma oscillator, i found it some international website,i think its useful for us.

Screenshots

Indicator / Formula

Copy & Paste Friendly
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

1. kesk
about 15 years ago

Indicators based on Jurik is very smooth. This looks very raw

Leave Comment

Please login here to leave a comment.