Skip to main content

3/10 Oscillator for Amibroker (AFL)

hemsvg almost 16 years ago Amibroker (AFL)

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

The 3/10 Oscillator is the Difference between a 3 and 10 Period Simple Moving Average. This oscillator is made popular by Linda B Raschke.
It can be used in any time frames.

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("My 3/10 Osc");
m=MA(Close,3)-MA(Close,10);
Plot( m, "My 3/10 Osc", colorRed );
s=MA(m,16);
Plot(s,"Signal",colorBlue);
Plot(0,"",colorWhite,styleDashed);
_SECTION_END();

1 comments

Leave Comment

Please login here to leave a comment.