which combination of afl are used for identifing trend?plz share ur afl names here

amibrokerfans

Well-Known Member
#2
Re: which combination of afl are used for identifing trend?plz share ur afl names her

my fav...
HULL of linear MA
RSX
kurtosis (dont know it already created for amibroker or not, if not here the code which i created...)
Code:
_SECTION_BEGIN("kurtosis");
function Momentum( array, period )
{
  return array - Ref( array, -period );
}
z=Momentum(C,4);

kurtosis=MA(EMA(z-Ref(z,-1),40),10);
Plot(kurtosis, "kurtosis", colorBlack, styleLine| styleOwnScale);
_SECTION_END();
 
Last edited: