Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
FRAMA - Fractal Adaptive Moving Average for Amibroker (AFL)
Another form of moving Average that used the fractal theory and ploted by Adaptive Moving Average (AMA)
enjoy it good trading
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | _SECTION_BEGIN ( "FRAMA" ); // FRAMA - Fractal Adaptive Moving Average Price = ( H + L )/2; N = Param ( "N" , 16, 2, 40, 2 ); // must be even ** N3 = ( HHV ( High , N ) - LLV ( Low , N ) ) / N; HH = HHV ( High , N / 2 ) ; LL = LLV ( Low , N / 2 ); N1 = ( HH - LL ) / ( N / 2 ); HH = HHV ( Ref ( High , - N/2 ), N/2 ); LL = LLV ( Ref ( Low , - N/2 ), N/ 2 ); N2 = ( HH - LL ) / ( N / 2 ); Dimen = IIf ( N1 > 0 AND N2 > 0 AND N3 > 0, ( log ( N1+N2) - log ( N3 ) )/ log ( 2 ), Null ); alpha = exp ( -4.6 * (Dimen -1 ) ); alpha = Min ( Max ( alpha, 0.01 ), 1 ); // bound to 0.01...1 range Frama = AMA ( Price, alpha ); Plot ( Frama, "FRAMA(" +N+ ")" , colorRed , styleThick ); Plot ( EMA ( C , N ) , "EMA(" +N+ ")" , colorBlue ); Plot ( C , "Close" , colorBlack , styleCandle ); //----------------------------------------------------------------------- //**Odd period inputs can be allowed with the inclusion of fol code :- //if( (N % 2) != 0 ) //or if ( (N & 1) != 0 )N ++ _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back