Category Trend  Published on 26/02/2021

Download Backtest Market Data

Description

Now you can test your automated strategies (cBots) with much more historical data on and be more confident when running your systems. Finding good Forex data can be very difficult or expensive. We offer an excellent widget to download data for a large a variety of Forex, CFD and commodities.

Backtesting is the process of simulating a trading strategy using historical data.

We are using the data widget to download free data to be used with the cTrader Data Converter Application

ENHANCE YOUR TRADING WITH DATA-DRIVEN DECISIONS

VISIT THE PRODUCT PAGE FOR MORE INFORMATION

 

FREE HISTORICAL DATA FILES CONVERTED WITH SOFTWARE

You can download the symbols below from Dropbox to test with the cAlgo platform. They are all GMT timezone.

Download EURUSD 2004-2017.zip

File size: 65MB

2004.01.01 - 2017.10.20, 14 yrs. of historical data

The DAX (Deutscher Aktienindex (German stock index)) is a blue chip stock market index consisting of the 30 major German companies trading on the Frankfurt Stock Exchange.

Download DAX30 2014-2017.zip

File size: 14MB

2014.01.01 - 2017.10.20, nearly 4 yrs. of historical data

VISIT THE PRODUCT PAGE FOR MORE INFORMATION

How To Import The Data Into cAlgo?

Find Out How to Import Historical Data Files Into cAlgo 

 

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-data-market-backtesting"

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-data-market-backtesting");
            }

            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: 2464
Comments
Log in to add a comment.
AC
acrigney · 5 months ago

Guys you wouldn't have any tick data would you? I only use Range charts now.