Category Trend  Published on 27/02/2021

cTrader Bill Williams Indicators

Description

We are offering a FREE collection of 4 Bill Williams trading indicators who is a leading analyst in Market Trends, this package includes the following indicators. The Alligator Indicator is perhaps Bill Williams' most famous invention. The indicator consists of the construction of three balance lines, which are basically moving averages (MA) of varying lengths, that are moved forward a certain number of bars into the future.

  1. Market Facilitation Index (MFI)
  2. Gator Oscillator
  3. Fractals Indicator
  4. Alligator Indicator

 

 

Contactinstant chat group
Websitehttps://clickalgo.com

ClickAlgo

Twitter | Facebook | YouTube | Pinterest | LinkedIn

 


using cAlgo.API;
using System.Windows.Forms;

namespace cAlgo
{
    [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
    public class ClickAlgoIndicator : Indicator
    {
        [Parameter(DefaultValue = 0.0)]
        public double Parameter { get; set; }

        [Output("Main")]
        public IndicatorDataSeries Result { get; set; }


        protected override void Initialize()
        {
            var ret = MessageBox.Show("It is not possible to download the software from the cTDN website. Would you like to visit us at ClickAlgo.com where you can download it?", "Downloading...", MessageBoxButtons.YesNo, MessageBoxIcon.Information);

            if (ret == DialogResult.Yes)
            {
                System.Diagnostics.Process.Start("https://clickalgo.com/bill-williams-indicators");
            }
        }

        public override void Calculate(int index)
        {
            // Calculate value at specified index
            // Result[index] = ...
        }

    }
}


ClickAlgo's avatar
ClickAlgo

Joined on 05.02.2015

  • Distribution: Free
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: ClickAlgo Indicator.algo
  • Rating: 5
  • Installs: 2267
Comments
Log in to add a comment.
No comments found.