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 ....
Fibonacci Moving Average for Amibroker (AFL)
Rating:
3 / 5 (Votes 2)
Tags:
amibroker, moving average, fibonacci
It uses Moving Average as Fibonacci lines.
Similar Indicators / Formulas
Hull Moving Average (HMA)
Submitted
by kaiji over 15 years ago
Guppy GMMA with "derived" Indicator
Submitted
by dalmas about 15 years ago
Candlestick above SMA 20
Submitted
by tjhailioe about 15 years ago
Volume wieghted moving average
Submitted
by kaiji over 15 years ago
Average Price Crossover
Submitted
by mada8181 about 15 years ago
Automatic Fibonacci
Submitted
by ngocleasing about 15 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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | _SECTION_BEGIN ( "Price" ); SetChartOptions (0, chartShowArrows | chartShowDates ); _N (Title = StrFormat ( "{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " + WriteVal ( V , 1.0 ) + " {{VALUES}}" , O , H , L , C , SelectedValue ( ROC ( C , 1 )) )); Plot ( C , "Close" , ParamColor ( "Color" , colorBlack ), styleNoTitle | ParamStyle ( "Style" ) | GetPriceStyle () ); if ( ParamToggle ( "Tooltip shows" , "All Values|Only Prices" ) ) { ToolTip= StrFormat ( "Open: %g\nHigh: %g\nLow: %g\nClose: %g (%.1f%%)\nVolume: " + NumToStr ( V , 1 ), O , H , L , C , SelectedValue ( ROC ( C , 1 ))); } _SECTION_END (); _SECTION_BEGIN ( "5MA" ); P = ParamField ( "Price field" ,-1); Periods = Param ( "Periods" , 5, 2, 200, 1 ); Plot ( EMA ( P, Periods ), _DEFAULT_NAME (), ParamColor ( "Color" , colorCycle ), ParamStyle ( "Style" ) ); _SECTION_END (); _SECTION_BEGIN ( "8MA" ); P = ParamField ( "Price field" ,-1); Periods = Param ( "Periods" , 8, 2, 200, 1 ); Plot ( EMA ( P, Periods ), _DEFAULT_NAME (), ParamColor ( "Color" , colorCycle ), ParamStyle ( "Style" ) ); _SECTION_END (); _SECTION_BEGIN ( "13MA" ); P = ParamField ( "Price field" ,-1); Periods = Param ( "Periods" , 13, 2, 200, 1 ); Plot ( EMA ( P, Periods ), _DEFAULT_NAME (), ParamColor ( "Color" , colorCycle ), ParamStyle ( "Style" ) ); _SECTION_END (); _SECTION_BEGIN ( "21MA" ); P = ParamField ( "Price field" ,-1); Periods = Param ( "Periods" , 21, 2, 200, 1 ); Plot ( EMA ( P, Periods ), _DEFAULT_NAME (), ParamColor ( "Color" , colorCycle ), ParamStyle ( "Style" ) ); _SECTION_END (); _SECTION_BEGIN ( "34MA" ); P = ParamField ( "Price field" ,-1); Periods = Param ( "Periods" , 34, 2, 200, 1 ); Plot ( EMA ( P, Periods ), _DEFAULT_NAME (), ParamColor ( "Color" , colorCycle ), ParamStyle ( "Style" ) ); _SECTION_END (); _SECTION_BEGIN ( "55MA" ); P = ParamField ( "Price field" ,-1); Periods = Param ( "Periods" , 55, 2, 200, 1 ); Plot ( EMA ( P, Periods ), _DEFAULT_NAME (), ParamColor ( "Color" , colorCycle ), ParamStyle ( "Style" ) ); _SECTION_END (); _SECTION_BEGIN ( "89MA" ); P = ParamField ( "Price field" ,-1); Periods = Param ( "Periods" , 89, 2, 200, 1 ); Plot ( EMA ( P, Periods ), _DEFAULT_NAME (), ParamColor ( "Color" , colorCycle ), ParamStyle ( "Style" ) ); _SECTION_END (); _SECTION_BEGIN ( "Volume" ); Plot ( Volume , _DEFAULT_NAME (), ParamColor ( "Color" , colorLavender ), styleNoTitle | ParamStyle ( "Style" , styleHistogram | styleOwnScale | styleThick | styleNoLabel , maskHistogram ), 2 ); Plot ( MA ( Volume ,5), "MA" , ParamColor ( "Color" , colorRed ), ParamStyle ( "Style" )); _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back