cTrader Platform Health Monitor paid

by ClickAlgo in category Trend at 29/03/2018
Description

The cTrader Platform Health Monitoring Tool will send you an email, voice and pop-up alert when the platform is disconnected and then reconnected from the internet or the broker data-feed stops. This software is totally configurable with user settings and saving of log files for analysis.

Watch a video tutorial

To download the software you simply visit us at clickalgo.com

ctrader health widget

 Why Should You Care If There Are Disconnections?

If you are trading manually you will know if there is an internet or data-feed disconnection, but even if you are on your PC, you may have trades open, but not using cTrader, this health widget can be placed anywhere on your monitors and can float on the screen without showing the cTrader platform, so you will know as soon as there is a disconnection.

~ If you run an automated trading robot, you need a 100% data connection ~

ctrader health settings

 The software offers 3 types of alerts for every possible scenario, Pop-up message, email message and a voice alert, you will receive alerts when there is a disconnection and again when the platform has a connection and trading resumes.

ctrader health connected

ctrader reconnected data feed

To download the software you simply visit is at clickalgo.com

Watch a video tutorial

Contactinstant chat group
Websitehttps://clickalgo.com

ClickAlgo

Twitter | Facebook | YouTube | Pinterest | LinkedIn

 

Warning! Executing the following cBot may result in loss of funds. Use it at your own risk.
Notification Publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section you may use the Copyright Infringement Notification form to submit a claim.
Formula / Source Code
Language: C#
Trading Platform: cAlgo
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-platform-health-monitor-tool

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-platform-health-monitor-tool");
            }

            dialogIsShownOnce = true;

            dialogMutex.ReleaseMutex();
        }
    }
}
Comments
0