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 ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Hull MA for Amibroker (AFL)
Rating:
5 / 5 (Votes 1)
Tags:
amibroker, moving average
Track the crossover to get the enter and exits.
Similar Indicators / Formulas
Hull Moving Average (HMA)
Submitted
by kaiji almost 15 years ago
Smoothed MA (SSMA)
Submitted
by kelvinhand over 11 years ago
Trend Scalping System
Submitted
by esnataraj over 14 years ago
Buff Volume Weighted Moving Averages
Submitted
by kaiji almost 15 years ago
Volume wieghted moving average
Submitted
by kaiji almost 15 years ago
Indicator / Formula
Copy & Paste Friendly
function HullMaFunction( P, Periods, Delay ) { X = 2 * WMA(P,round(Periods/2)) - WMA(P,Periods); HullMA = WMA(X,round(sqrt(Periods))); HullMA = Ref(HullMA,-Delay); return HullMa; } PlotPriceField = ParamToggle("PriceField","HIDE|SHOW",1); P = ParamField("Price field",-1); Periods = Param("Periods", 15, 2, 200, 1, 10 ); Delay = Param("Delay", 0, 0, 10, 1 ); HullMA = HullMaFunction( P, Periods, Delay ); if( PlotPriceField ) Plot(C,"",1,128); Plot( HullMA, _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
0 comments
Leave Comment
Please login here to leave a comment.
Back