Hi,
I am triyng to program an Screener for:
Hull average 10 periods crosses over or crosses under Simple moving average 15 periods shifted 2 periods to the right.
It does not five any error but It is not working.
Thanks in advance for your help
SMA15 = Average[15,0](close)
HMA10 = Average[10,7](close)
UPb = (HMA10[1] crosses over SMA15[3])
DNb = (HMA10[1] crosses under SMA15[3])
SCREENER[UPb or DNb]
Line 2 should enter MA type 0-6. Despite documentation says also typre 7 and 8 are supported, well… they aren’t, yet!
If you search HULL you’ll find other topics about this issue and you’ll be able to find the full HULL code so that you can write it your own, instead of using the native one (since it’s not native, yet).
Thanks ROberto,
Now It is working Many thanks
The Hull code is
Period=16
inner = 2*weightedaverage[ round( Period/2 ) ](close)-weightedaverage[Period](close)
MMHULL=weightedaverage[ round( sqrt(Period) ) ]( inner )