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

Abs Insynk MA for Amibroker (AFL)
rknapik
almost 14 years ago
Amibroker (AFL)

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

here is an indicator some may find useful, or can improve upon. basically, an overbought, oversold indicator.

Similar Indicators / Formulas

3 Days Track
Submitted by janet0211 almost 14 years ago
Trading Volume Statistic
Submitted by tuanstock1 almost 10 years ago
Ergodic Oscillator
Submitted by dljtrader over 13 years ago
BoH Risk Aversion Indicator
Submitted by genkumag over 12 years ago
Chande Momentum Oscillator
Submitted by klimpek over 13 years ago
%R ++
Submitted by reb almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
p1=IIf(C>MA(C,20),1,IIf(C<MA(C,20),-1,0));
p2=IIf(C>MA(C,30),1,IIf(C<MA(C,30),-1,0));
p3=IIf(C>MA(C,5),1,IIf(C<MA(C,5),-1,0));
p4=IIf(C>MA(C,15),1,IIf(C<MA(C,15),-1,0));
p5=IIf(C>MA(C,60),1,IIf(C<MA(C,60),-1,0));
p6=IIf(C>MA(C,10),1,IIf(C<MA(C,10),-1,0));
p7=IIf(C>MA(C,25),1,IIf(C<MA(C,25),-1,0));

d1=(p1+p2+p3+p4+p5+p6+p7)/7;

C5=round(d1);

Plot(C5,"INSYK H",ParamColor("BLUE",colorBlue),
ParamStyle("style",0,maskAll));

2 comments

1. esnataraj

Fantastic afl

2. cnbondre

Hi,
It is a innovative concept !!!
Thanks a lot.

Leave Comment

Please login here to leave a comment.

Back