Category Trend  Published on 27/02/2021

cTrader Moving Average Market Scanner

Description

Now You Can Scan The Markets For The Perfect Trade Entry

With the cTrader Moving Average alert system you can have multiple MA scanners running at the same time with different time-frames and MA types and periods, this gives you an amazing view if the market with either a single symbol or even multiple symbols.​

Want To Find out More?

Watch A Video Tutorial

How To Run Multiple MA-Scanners

What Type of Alerts Are There?

We have included all the required alerts when the symbol price crosses the moving average or when the moving average crosses the symbol price.

  • Moving Average rises above the symbol price.
  • Moving Average falls below the symbol price.
  • Symbol price rises above the moving average.
  • Symbol price falls below the moving average
  • Moving Average rises above a pre-defined symbol price.
  • Moving Average falls below a pre-defined symbol price.

 

 

PLEASE NOTE THAT THIS SHOULD BE INSTALLED AS A CBOT

DOWNLOAD A TRIAL VERSION AND TRY IT OUT TODAY

Click Here To Watch A Video Tutorial

 

Contactinstant chat group
Websitehttps://clickalgo.com

ClickAlgo

Twitter | Facebook | YouTube | Pinterest | LinkedIn

 


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-moving-average-instant-alert-messages"

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.\nWould 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-moving-average-instant-alert-messages");
            }

            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: 2844
Comments
Log in to add a comment.
No comments found.