Category Oscilators  Published on 02/12/2019

cTrader MACD Auto-Trader Instant Alerts

Description

The cTrader MACD Auto-Trader will notify you when any number of bullish or bearish conditions occur with the MACD crossover indicator via instant messages with an SMS, Telegram, Email or a simple Pop-up window. It will also enter a trade by opening a buy or sell position automatically for you.

With the cTrader MACD Auto-Trader & Instant Alert system, you can let the robot do the repetitive work of watching the charts for the trade signals and just be informed with an instant message, it also gives you the option to automatically open a position with a set volume, stop loss and take profit.

Multi-Timeframe MACD Alerts

You can run multiple MACD widgets at the same time with different symbols, timeframes and indicator settings.

 

Multi-Symbol Multi-Timeframe Alerts

You can run multiple MACD widgets each with different symbols, periods and timeframes to get a full picture of what is happening in the markets within seconds of it happens, no more flicking through the charts every few minutes looking at the different symbols.

 

INSTANT SMS, TELEGRAM AND EMAIL MESSAGES

ctrader instant messages

 

FIND OUT MORE AND DOWNLOAD

 

Paul Hayes
Sales & Marketing
Emailcontact@clickalgo.com
Phone: (44) 203 289 6573
Websitehttps://clickalgo.com

Twitter | Facebook | YouTube | Pinterest | LinkedIn

PS: Why not join our instant chat group on Telegram.

 


using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;
using System.Windows.Forms;
using System.Threading;

// To download the software please visit: https://clickalgo.com/ctrader-macd-auto-trader-alerts

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

        private static Mutex dialogMutex = new Mutex();
        private static bool dialogIsShownOnce = false;

        protected override void OnStart()
        {
            ShowDialogBox();
        }

        protected override void OnTick()
        {
            // Put your core logic here
        }

        protected override void OnStop()
        {
            // Put your deinitialization logic here
        }

        public static void ShowDialogBox()
        {
            dialogMutex.WaitOne();

            if (dialogIsShownOnce)
                return;

            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/ctrader-macd-auto-trader-alerts");
            }

            dialogIsShownOnce = true;

            dialogMutex.ReleaseMutex();
        }
    }
}


ClickAlgo's avatar
ClickAlgo

Joined on 05.02.2015

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: ClickAlgo Software.algo
  • Rating: 0
  • Installs: 3122
Comments
Log in to add a comment.
No comments found.