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 ....
Automatic Fibonacci for Amibroker (AFL)
Rating:
4 / 5 (Votes 6)
Tags:
amibroker, fibonacci
Automatically finds Fibonacci levels and plots them.
Similar Indicators / Formulas
Auto retracment
Submitted
by gaurav918 almost 13 years ago
Fibonacci Internal & External Retracements (Modified))
Submitted
by Capitano over 13 years ago
Automatic Fibonacci Levels
Submitted
by kaiji almost 15 years ago
Fibonacci High-Probability Zones
Submitted
by jayman2005 over 11 years ago
fibonacci extension updown
Submitted
by vijaybaroda almost 12 years ago
Fibonacci Cluster
Submitted
by sd_stocks over 14 years ago
Indicator / Formula
Copy & Paste Friendly
Plot(C,"", colorWhite,styleCandle); // Get values for fib levels StartBar=SelectedValue(BarIndex()); FinishBar = EndValue( BarIndex() ); i = startbar; period = FinishBar - StartBar; Lo =LLV(L,period); Hi = HHV(H,period); Line0 = 0; Line1 = 0; Line2 = 0; Line3 = 0; Line4= 0; Line100 = 0; for( i = startbar; i < finishbar; i++ ) { if(EndValue(C)<SelectedValue(C)) { Line0 = EndValue(Lo); Line100 = EndValue(Hi); Line1 = Line0 + abs(Line100-Line0)*0.236; Line2 = Line0 + abs(Line100-Line0)*0.382; Line3 = Line0 + abs(Line100-Line0)*0.5; Line4 = Line0 + abs(Line100-Line0)*0.618; } else { Line100 = EndValue(Lo); Line0 = EndValue(Hi); Line1 =Line0 - abs(Line100-Line0)*0.236; Line2 = Line0 - abs(Line100-Line0)*0.382; Line3 = Line0 - abs(Line100-Line0)*0.5; Line4 = Line0 - abs(Line100-Line0)*0.618; } } // external fib lines begining fom selecetdbarindex() fib0= LineArray(startbar, Line0, finishbar, Line0, 0, 1); fib100 = LineArray(startbar, Line100, finishbar, Line100, 0, 1); // depth of middle lines n= round((finishbar-startbar)/2); // middle lines fib1= LineArray((finishbar-n), Line1, finishbar, Line1, 0, 1); fib2= LineArray((finishbar-n), Line2, finishbar, Line2, 0, 1); fib3= LineArray((finishbar-n), Line3, finishbar, Line3, 0, 1); fib4= LineArray((finishbar-n), Line4, finishbar, Line4, 0, 1); Plot(fib0,"", colorWhite); Plot(fib100,"", colorRed); Plot(fib1,"", colorGrey50); Plot(fib2,"", colorGrey50); Plot(fib3,"", colorOrange); Plot(fib4,"", colorGrey50); Title = Name() + " - FIB LEVELS ";
1 comments
Leave Comment
Please login here to leave a comment.
Back
Fibonacci buy sell signal formula send me my mailplease