Category Other  Published on 02/03/2021

Manual Strategy Tester

Description

This cBot allows you to use the cTrader back tester as a manual strategy testing environment, you will be able to test your manual strategies on cTrader back tester.

Free Download 7 Day Trial / Buy: https://www.algodeveloper.com/product/manual-strategy-tester/

If you have any question or issue with our product please contact us via our site live chat or if we were offline leave a message, if you post a comment here we will not get any notification and we will not be able to help you.


using System;
using System.Linq;
using cAlgo.API;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
using cAlgo.Indicators;

namespace cAlgo.Robots
{
    [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class Blank : Robot
    {
        protected override void OnStart()
        {
            ChartObjects.DrawText("AlgoDeveloper", "Please download this cBot from AlgoDeveloper.com", StaticPosition.Center, Colors.Red);
        }

        protected override void OnTick()
        {
            // Put your core logic here
        }

        protected override void OnStop()
        {
            // Put your deinitialization logic here
        }
    }
}


afhacker's avatar
afhacker

Joined on 15.10.2015

  • Distribution: Free
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: Blank.algo
  • Rating: 5
  • Installs: 2340
Comments
Log in to add a comment.
No comments found.