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

OsMA - Moving Average of Oscillator for Amibroker (AFL)

Rating:
3 / 5 (Votes 7)
Tags:
oscillator, amibroker

I had searched for this indicator but failed to find.
So i made it myself.
Nothing great logic.
very simple
but effective in 5 min chart for nifty
u chk with ur settings as per ur needs

thanx

rhn_patel@rediffmail.com

Screenshots

Similar Indicators / Formulas

Febo RSI ..real indicator
Submitted by abhinavsingh over 12 years ago
Trading Volume Statistic
Submitted by tuanstock1 almost 10 years ago
Ergodic Oscillator
Submitted by dljtrader over 13 years ago
3 Days Track
Submitted by janet0211 almost 14 years ago
Chande Momentum Oscillator
Submitted by klimpek over 13 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("OsMA");
r1 = Param( "Fast avg", 40, 0, 200, 1 );
r2 = Param( "Slow avg", 50, 0, 200, 1 );
r3 = Param( "Signal avg", 100, 0, 200, 1 );

ml = MACD(r1, r2);
sl = Signal(r1,r2,r3);
OsMA= (2*ml)-sl;

Plot(0,"",colorBlack,styleDashed);
Col=IIf(OsMA<0,IIf(OsMA>Ref(OsMA,-1),colorDarkRed,colorRed),IIf(OsMA<Ref(OsMA,-1),colorGreen,colorBrightGreen));
Plot( OsMA, "", Col, styleThick | styleHistogram |styleNoLabel);
Plot( OsMA, "\nOsMA ("+r1+", "+r2+", "+r3+"): ", colorBlack, styleThick  );
_SECTION_END();

6 comments

1. niklravi

hi
an interesting indicator. let me know what is the best time frame to be used . also how to trade by this?

ravi
qatar

2. extremist

i chked it in todays live mkt in comparison to original OsMa in MT4 and found tht
It is still an unfinished job.
i thought it is finished but still some left.
i’m trying
and wil post final version.

thnx

3. nareshpriya

even now it looks very promising.looking forward to the fuller version :)

4. extremist

@niklravi : read the above lill description i have already mentioned it.
for parameters keep the default i used and TF 5min for nifty.

for other stocks and indices need to be chked and then used so i said select ur parameters as u need.

thanx.

5. kis

I believe that the OsMA is just the MACD Histogram but the implementation ia probably where the signal line of OsMA uses simple moving average (instead of EMA) of the MACD.

i.e.

ml = MACD(r1, r2);
sl = MA(ml, r3);
OsMA = ml-sl;
6. extremist

@ KIS probably u didn’t looked formula properly.
The real
Osma = Sl-Ml
and the formula used in MACD Histogram is
Hist = ml-sl

this is the clear cut difference u can see

for better understanding u chk the values of histogram and OsMa
and u can find the difference.

plz look carefully

Leave Comment

Please login here to leave a comment.

Back