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 ....
Fractal Dimension Indicator from Traders Tips June 2010 for Amibroker (AFL)
Rating:
5 / 5 (Votes 1)
Tags:
amibroker
From Traders tips June 2010
Screenshots
Similar Indicators / Formulas
Kavach Of Karna v2
Submitted
by hbkwarez over 10 years ago
Advanced Elliott Waves
Submitted
by MarcosEn over 13 years ago
3_6Day GuaiLiLv
Submitted
by motorfly over 13 years ago
Williams Alligator System
Submitted
by durgesh1712 over 13 years ago
Interactive Linear Regression Channel
Submitted
by InternetWorm over 13 years ago
*Level Breakout system*
Submitted
by Tinych over 13 years ago
Indicator / Formula
Copy & Paste Friendly
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 33 34 35 36 37 | Price = ( H + L )/2; N = Param ( "N" , 30, 10, 100, 2 ); Smooth = ( Price + 2 * Ref ( Price, -1 ) + 2 * Ref ( Price, -2 ) + Ref ( Price, -3 ) ) / 6; N3 = ( HHV ( Smooth, N ) - LLV ( Smooth, N ))/N; HH2 = HHV ( Smooth, N/2 ); LL2 = LLV ( Smooth, N/2 ); N1 = ( HH2 - LL2 )/(N/2); N2 = Ref ( HH2 - LL2, - N/2 )/(N/2); Ratio = ( log ( N1 + N2 ) - log ( N3 ) )/ log ( 2 ); dimen = Null ; for ( i = 20+N; i < BarCount ; i++ ) { ratio[ i ] += Nz ( dimen[ i - 1 ] ); ratio[ i ] *= 0.5; for ( sr = 0, k = 0; k < 20; k++ ) sr += ratio[ i - k ]; dimen[ i ] = sr / 20; } Plot ( Dimen, "Fractal dimension" , colorRed ); PlotGrid ( 1.6, colorBlue ); PlotGrid ( 1.4, colorBlue ); |
0 comments
Leave Comment
Please login here to leave a comment.
Back