Category Trend  Published on 10/10/2021

cTrader MACD Divergence + Telegram Alert

Description

Our version of the cTrader MACD Divergence indicator will send Telegram messages directly to your mobile phone with Buy and Sell signals, you can download the indicator from our website.

Download by following the links below.

 

cTrader MACD Divergence

 

Join our Vendor Program

If you have some unique indicators or trading tools then why not sell them on our marketplace and make a passive income? - How to apply

Contactinstant chat group
Websitehttps://clickalgo.com

ClickAlgo

Twitter | Facebook | YouTube | Pinterest | LinkedIn


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

namespace cAlgo
{
    [Indicator(IsOverlay = false, 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("Please click YES to open a web browser where you can download this product from ClickAlgo.com", "Downloading...", MessageBoxButtons.YesNo, MessageBoxIcon.Information);

            if (ret == DialogResult.Yes)
            {
                System.Diagnostics.Process.Start("https://clickalgo.com/ctrader-macd-divergence");
            }
        }

        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: 0
  • Installs: 2040
Comments
Log in to add a comment.
NO
nobic.com.mx · 2 years ago

How can I add this to a cBot? I want open positions on the divergence