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 ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Bill Williams Alligator for Amibroker (AFL)

Rating:
2 / 5 (Votes 4)
Tags:
alligator, amibroker

This is an accurate Alligator indicator based on the mid price and smoothed as Bill Williams specifies.
This Alligator is also projected into the future as Williams prefers.

Screenshots

Similar Indicators / Formulas

Alligator Trading System
Submitted by kaiji over 14 years ago
AO (Awesome Oscillator) Indicator
Submitted by rajeevj almost 12 years ago
AC (Acceleration Oscillator) Indicator
Submitted by rajeevj almost 12 years ago
BUAYA Timur
Submitted by lodwyk about 11 years ago
Alligator AO Indicator, Exploration and System
Submitted by kaiji over 14 years ago
Alligator AC Indicator, Exploration and System
Submitted by kaiji over 14 years ago

Indicator / Formula

Copy & Paste Friendly
/*
   Bill William's Trading Chaos: Second Edition, Alligator.
   Written by EStromholt   September 26, 2010
*/

//This is an accurate Alligator indicator based on the Mid price and smoothed as Bill Williams specifies.
//This Alligator is also projected into the future as Williams prefers.



_SECTION_BEGIN("bwGator");

MedianPrice = (H+L)/2;

Jaw     = Wilders(MedianPrice,13);
Teeth   = Wilders(MedianPrice, 8);
Lips    = Wilders(MedianPrice, 5);

Plot(Jaw,  "Jaw", colorBlue, styleThick, Null, Null, 8);
Plot(Teeth,"Teeth", colorRed, styleThick, Null, Null, 5);
Plot(Lips, "Lips", colorGreen, styleThick, Null, Null, 3);

0 comments

Leave Comment

Please login here to leave a comment.

Back