Gaussian Moving Average versus Hull Moving Average ?

Questions about MultiCharts and user contributed studies.
quantum777
Posts: 38
Joined: 18 Dec 2014
Has thanked: 6 times
Been thanked: 1 time

Gaussian Moving Average versus Hull Moving Average ?

Postby quantum777 » 07 Jun 2015

Has anyone compared or coded the Gaussian Moving Average and compared it to the Hull Moving Average ?
ALSO does anyone have the Hull Moving Average Auto-trading via crossover and or slope code for MC 64 ?
Jeff

maxmax68
Posts: 163
Joined: 20 Nov 2012
Has thanked: 55 times
Been thanked: 48 times

Re: Gaussian Moving Average versus Hull Moving Average ?

Postby maxmax68 » 07 Jun 2015

Here is the Hull Moving Average as a plot.
It could be a starting point.
Massimo

Code: Select all

Inputs:
PriceValue(close),
Len(16);
Vars:
HullMA(0);

HullMA=WAverage((2* WAverage(PriceValue,Floor(Len/2))-WAverage(PriceValue,Len)), Floor(SquareRoot(Len)));

plot1(HullMA);


Return to “MultiCharts”