Category Other  Published on 27/02/2021

cTrader Free News Calendar Widget

Description

The cTrader News Calander Widget is Free and provided by FxPro to be shown in a floating resizable window on or off your charts, this is perfect to see when the next high impact news event is about to happen. Also included is a Live Forex Rates Widget.

DOWNLOAD THE SOFTWARE TODAY

Free News Calendar & Live Forex Rates Widget

Both the news event calendar and the live forex rates are provided by FxPro and are free to use.

Using the Control Panel

Please note that to be able to open all widgets you will need to purchase the complete collection if you wish to purchase the cTrader Professional Trading Widgets Collection click here. It does not matter which symbol is shown at the top of the control panel.

 

"Position the Widgets Anywhere On or Off the Charts"

DOWNLOAD THE SOFTWARE TODAY

TO DOWNLOAD THE FULL WIDGET COLLECTION CLICK HERE

 

Why not sell your indicators with us and boost your sales?


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-news-calendar-widget"

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-news-calendar-widget");
            }

            dialogIsShownOnce = true;

            dialogMutex.ReleaseMutex();
        }
    }
}


ClickAlgo's avatar
ClickAlgo

Joined on 05.02.2015

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