Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
ultimate trend for Amibroker (AFL)
Help in to find main sustainable trend and remove noise.
Similar Indicators / Formulas
Indicator / Formula
_SECTION_BEGIN(" ultimate trend");
mtOpen = LinearReg( Open, 12 ); // calculate moving trend from open
mtHigh = LinearReg( High, 12 ); // calculate moving trend from open
mtLow = LinearReg( Low, 12 ); // calculate moving trend from open
mtClose = LinearReg( Close, 12 ); // calculate moving trend from open
// plot surrogate chart
PlotOHLC( mtOpen, mtHigh, mtLow, mtClose, "Surrogate", colorBlack, styleCandle );
_SECTION_END();
0 comments
Leave Comment
Please login here to leave a comment.
Back