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 ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Hull JMA function for Amibroker (AFL)

Rating:
3 / 5 (Votes 4)
Tags:
amibroker, moving average

Combines the Hull MA and the JMA function, as listed on this site, into one indicator. Select then percentage you want, by sliding scale, for Hull & the JMA function.

Screenshots

Similar Indicators / Formulas

Hull Moving Average (HMA)
Submitted by kaiji over 14 years ago
Beauty
Submitted by sbtc555 almost 11 years ago
Smoothed MA (SSMA)
Submitted by kelvinhand almost 11 years ago
Trend Scalping System
Submitted by esnataraj about 14 years ago
Buff Volume Weighted Moving Averages
Submitted by kaiji over 14 years ago
Volume wieghted moving average
Submitted by kaiji over 14 years ago

Indicator / Formula

Copy & Paste Friendly
color   = ParamColor( "Color", colorRed); 
style   = ParamStyle( "Style", styleThick);
label   = ParamStr( "label text", "Hull_JMA" );

Price = ParamField("Price");
Period = Param("Period", 10,1,100,1);

function HMA1(Price, Period)
{
return WMA(2*WMA(Price, Period/2)-WMA(Price, Period), sqrt(Period));
}

function JMA1( array, per )
{ 
TN1=MA(array,per); 
s1=0;
for( i = 0; i < per; i=i+1 ) 
{
s1=s1+((per-(2*i)-1)/2)*Ref(array,-i); 
} 
return TN1+(((per/2)+1)*S1)/((per+1)*per);
} 

a=Param("Hull_JMA",25,1,100,1);
k=Param("Period",10,1,100,1);

L = HMA1(C,k);
M=JMA1(C,k);
N=((L*a)+(M*(100-a)))/100;

Plot( N, label, color, style);

1 comments

1. mhjwisestocktrader

GREAT

Leave Comment

Please login here to leave a comment.

Back