This is a trading item or a component that was created using QuantShare by one of our members.
This item can be downloaded and used by QuantShare Trading Software.
Trading items are of different types. There are data downloaders, trading indicators, trading systems, watchlists, composites/indices...
You can use this item and hundreds of others for free by downloading QuantShare.
Top Reasons Why You Should Use QuantShare:
Works with US and international markets (stock, forex, options, futures, ETF...)
Offers you the tools that will help you become a profitable trader
Allows you to implement any trading ideas
Exchange items and ideas with other QuantShare users
Our support team is very responsive and will answer any of your questions
We will implement any features you suggest
Very low price and much more features than the majority of other trading software
The Hull Moving Average is based on several weighted moving averages. In an attempt to create a more responsive MA and reduce the lag problem that is inherent to most moving averages, the HULL indicator returns a much faster and smoother moving average.
The Hull Moving Average was first introduced by Alan Hull, a second-generation share trader.
The trading indicator can be used like any other moving average and it is well suited for trend following systems.
The following is an example of a strategy (trading system) that uses the Hull MA formula with two different time frames:
crossDaily = cross(low, hullMA(60));
crossWeekly = Timeframedecompress(TimeframeApply(7, cross(close, hullMA(60))));
buy = crossDaily && crossWeekly;
The "crossDaily" variable signals crossovers between a security low and the 60-Period Hull MA, while the "crossWeekly" detects crossovers between a security close and the 60-Week Hull MA. As you can see in the formula, we have applied the latter crossover to weekly data by using the "TimeframeApply" function then by decompressing the result using "Timeframedecompress". The strategy generates a buy signal when both the daily and weekly crossovers occur at the same time.
The Hull MA function/formula has only one argument, which is a lookback period. This period is passed internally to the different weighted moving averages that are part of the Hull formula.