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

Hull Moving Average (HMA) for Amibroker (AFL)
kaiji
about 14 years ago
Amibroker (AFL)

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

A very smoothed out moving average with little lag. Very similar to the Jurik moving average.

Similar Indicators / Formulas

Guppy Multiple Moving Average (GMMA)
Submitted by kaiji about 14 years ago
Beauty
Submitted by sbtc555 almost 11 years ago
Smoothed MA (SSMA)
Submitted by kelvinhand almost 11 years ago
Trend Scalping System
Submitted by esnataraj almost 14 years ago
TD DeMarker Plane
Submitted by extremist almost 13 years ago
Guppy GMMA with "derived" Indicator
Submitted by dalmas almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
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

1. d9

Error in formula…

Should be:

Period = Param("Period:", 20, 1, 200);
SqrtPeriod = sqrt(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));

—d9

Leave Comment

Please login here to leave a comment.

Back