The backtest cannot be performed, and the backtest button is gray!

Created at 14 Dec 2024, 13:33
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
53

5316878

Joined 09.02.2024

The backtest cannot be performed, and the backtest button is gray!
14 Dec 2024, 13:33


When the theme is light color, the run button of the backtest is not obvious. It is recommended to change the color!


@5316878
Replies

5316878
14 Dec 2024, 13:46 ( Updated at: 16 Dec 2024, 07:32 )

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

namespace cAlgo.Robots
{
    [Robot(AccessRights = AccessRights.None, AddIndicators = true)]
    public class MyDemo : Robot
    {
        [Parameter(DefaultValue = "Hello world!")]
        public string Message { get; set; }

        protected override void OnStart()
        {
            // To learn more about cTrader Automate visit our Help Center:
            // https://help.ctrader.com/ctrader-automate

            Print(Message);
        }

        protected override void OnTick()
        {
            // Handle price updates here
        }

        protected override void OnStop()
        {
            // Handle cBot stop here
        }
    }
}

@5316878

PanagiotisCharalampous
16 Dec 2024, 08:04

Hi there,

We will change this in an upcoming update.

Best regards,

Panagiotis


@PanagiotisCharalampous