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

MA() vs Close (BillCapital 2014).afl for Amibroker (AFL)

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

You can see trending, pointing BUY SELL with all periods you like!

Screenshots

Similar Indicators / Formulas

Febo RSI ..real indicator
Submitted by abhinavsingh over 12 years ago
Trading Volume Statistic
Submitted by tuanstock1 over 9 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("MA vs C");
//P = ParamField("Price field",-1);
SetGradientFill( colorGreen /*top*/, colorRed /*bottom*/, 0 /*baseline level*/, GetChartBkColor() /*baseline color */); 

Periods = Param("Periods", 20, 2, 300, 1, 10 );

Plot( (C/MA( C, Periods )-1)*100,_DEFAULT_NAME(), colorLightOrange, styleLine | styleGradient, Null, Null, 0, -1  );
//Plot( ROC( C, Periods), "ROC", colorLightOrange, styleLine | styleGradient, Null, Null, 0, -1  );

Plot(0,"Truc 0",  colorDarkBlue, ParamStyle("Style"));
_SECTION_END();

_SECTION_BEGIN("MA1");
P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 300, 1, 10 );
Plot( MA( P, Periods ), _DEFAULT_NAME(), colorBrightGreen, ParamStyle("Style") ); 
_SECTION_END();

1 comments

1. wwilliam

Good

Leave Comment

Please login here to leave a comment.

Back