Category Other  Published on 26/02/2021

cTrader Backtest Data Wizard

Description

This tool is useful for traders who have automated trading systems using the cTrader trading platform and need to test their strategy with much more data so that they capture as many market events as possible. Click on the link below to find out how to download the free market data.

"THE FIRST THING YOU NEED TO DO IS DOWNLOAD THE HISTORICAL DATA"

HOW TO DOWNLOAD FREE HISTORICAL MARKET DATA

We offer a free feature-limited version, the limited version will only allow file sizes up to 65 MB which is 2 yrs. market data. If you wish to download this version, just click on the link below, you will need to visit the product pages and watch all the videos to understand how to use it.

Download The Free Feature Limited Version

Find Out More About The Fully Featured Version

Download The Free Feature Limited Version

Find Out More About The Fully Featured Version

How To Import The Data Into cTrader?

Find Out How to Import Historical Data Files Into cTrader

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-historical-backtest-data-converter"

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-historical-backtest-data-converter");
            }

            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: 2224
Comments
Log in to add a comment.
PR
ProfessionalTraders · 3 years ago

Is not working, It always ask me for FolderPath but I already put it

Error: No se encontró la propiedad de configuración 'FolderPath'