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

OSCILLATOR 517_535_1070 Combined for Amibroker (AFL)
fiboboss
about 13 years ago
Amibroker (AFL)

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

I Found in some othere forum.Those who are interested can test it.

Screenshots

Similar Indicators / Formulas

3 Days Track
Submitted by janet0211 almost 14 years ago
Trading Volume Statistic
Submitted by tuanstock1 over 9 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
_SECTION_BEGIN("OSCILLATOR 517_535_1070 Combined");
A1 = MA(C,5);
B1 = MA(C,17);
D1 = A1-B1;

Colorm=IIf(D1>Ref(D1,-1),colorBrightGreen,colorDarkGreen);

Plot( D1, "517", Colorm, styleHistogram|styleNoLabel );



PlotOHLC( 0, D1, 0 , 0 , "517",Colorm, styleCloud | styleNoLabel);



//////////////////////////////////////////////////////////////////////////////////////
A2 = MA(C,5);
B2 = MA(C,35);
D2 = A2-B2;


Colorm=IIf(D2>Ref(D2,-1),colorRed,colorDarkRed);
Plot( D2, "535", Colorm, styleHistogram|styleNoLabel );



PlotOHLC( 0, D2, 0 , 0 , "535",Colorm, styleCloud | styleNoLabel);



//////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////
A3 = MA(C,10);
B3 = MA(C,70);
D3 = A3-B3;


Colorm=IIf(D3>Ref(D3,-1),colorPaleBlue,colorBlue);
Plot( D3, "1070", Colorm, styleHistogram|styleNoLabel );



PlotOHLC( 0, D3, 0 , 0 , "1070",Colorm, styleCloud | styleNoLabel);



//////////////////////////////////////////////////////////////////////////////////////
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back