There’s no difference in v10.3 because 7 and 8, as from documentation, are not supported, while ProBuilder returns an error message.
v11 will support the HULL and other averages, but only when using their correct name, not AVERAGE, at least at present.
no difference with a “normal ” average
Yeah well I remembered after, I got the Simple Average also … I then added the 8 to give the Hull Average.
I raised a Topic on this anomaly a few weeks ago … follow the link below.
Simplified Creation does not create the correct code for … No 7 Zero Lag Exponential and No 8 – Hull
With some rounding modifications this code works perfectly, exactly the same as the native HULL average on v11:
// HullMA, the Hull Moving Average (same as v11):
//
Period = 14
p1 = round(sqrt(Period) - 0.5)
p2 = round((Period/2) - 0.5)
inner = (2*weightedaverage[p2](close)) - weightedaverage[Period](close)
S = weightedaverage[p1](inner)
return S
are not supported, while ProBuilder returns an error message.
I don’t get an error message using Hull Average as Average [14, 8] … even on Demo Forward Test (using Real data).
I always got an error messager on ProBuilder.
ProOrder should run smoothly, but I think you’ll get the same result as “0” (I did not test it, though).
rebParticipant
Master
Thanks mates for your help
Deffo not the same as the Simple MA.
Attached lower curve is the Average [14, 8] then I duplicated the System and changed to Average [14, 0] and the top curve is the result.
I think PRT have implemented the Hull average ahead of time into v 10.3