Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Hull Moving Average (HMA) for Amibroker (AFL)
A very smoothed out moving average with little lag. Very similar to the Jurik moving average.
Similar Indicators / Formulas
Indicator / Formula
Period = Param("Period:", 20, 1, 200); SqrtPeriod = Param("Square Root of Period:", 4, 1, 20); HullMA = WMA(2 * WMA(C, Period / 2) - WMA(C, Period), SqrtPeriod); Plot(HullMa, _DEFAULT_NAME(), ParamColor("Hull Moving Average Color", colorBlue));
1 comments
Leave Comment
Please login here to leave a comment.
Back
Error in formula…
Should be:
—d9