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.
To download the software you simply visit us at clickalgo.com
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 ~
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.
To download the software you simply visit is at clickalgo.com
Contact: instant chat group
Website: https://clickalgo.com
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-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();
}
}
}
ClickAlgo
Joined on 05.02.2015
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: ClickAlgo Software.algo
- Rating: 0
- Installs: 1556
- Modified: 13/10/2021 09:54