Category Oscilators  Published on 25/02/2021

cTrader ADX Divergence Indicator

Description

This is another unique indicator published by our vendor cAlgoBuddy, this is an average directional movement index was developed in 1978 by J. Welles Wilder as an indicator of trend strength in a series of prices of a financial instrument with added logic to show the divergencies with smoothed values using the Hull Moving Average formula.

Download by following the links below.

 

cTrader ADX

JOIN OUR VENDOR PROGRAM

Do you have some unique indicators you wish to sell, why not join our vendor program where we will do all the marketing and payment processing while you sit back and make money.


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/adx-divergence");
            }
        }

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

    }
}


ClickAlgo's avatar
ClickAlgo

Joined on 05.02.2015

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: ClickAlgo Indicator.algo
  • Rating: 0
  • Installs: 1194
Comments
Log in to add a comment.
EX
experthunters91 · 2 years ago

align and indicators on the exact time because in this way it is just reversed again for future details visit this one https://consumeratings.com/.

KE
kennedylindsay3903182 · 2 years ago

Divergence indications are essentially a warning that the trend momentum is shifting, rather than a signal for a reversal.

 

tiny fishing

 

WA
waboxix360 · 2 years ago

Divergence indicators are basically not a signal for a reversal but a warning that the trend momentum is changing. Before using these ADX tools you will need to learn about resumesplanet for more information regarding indicator window.