Exception #25F90207 when backtesting cBots
Created at 24 Mar 2025, 15:47
Exception #25F90207 when backtesting cBots
24 Mar 2025, 15:47
Hi, I am running into an issue when backtesting.
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 TestBot : 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
}
}
}

It is a newly created bot to test if I can backtest, and this comes up everytime.
firemyst
27 Mar 2025, 00:39
Report it as an error in cTrader and when you do reference this thread for them the next time it happens.
@firemyst