What does it mean: cBot crashed: Error #65147773

Created at 10 Dec 2014, 14:28
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!
MA

maxim_7

Joined 14.07.2013

What does it mean: cBot crashed: Error #65147773
10 Dec 2014, 14:28


What does this message (from Log tab) mean: cBot crashed: Error #65147773

 


@maxim_7
Replies

maxim_7
10 Dec 2014, 18:37

RE:

Minimal robot to reproduce issue

using cAlgo.API;
using cAlgo.Indicators;

namespace cAlgo.Robots
{
    [Robot()]
    public class R : Robot
    {
        protected override void OnStart()
        {
            Indicators.GetIndicator<SampleAlligator>(MarketData.GetSeries(TimeFrame.Minute5), 13, 8, 8, 5, 5, 3);
            MarketData.GetMarketDepth(Symbol);
        }
    }
}

If lunched on TimeFrame != 5 Minutes

Please help.


@maxim_7

Spotware
11 Dec 2014, 12:16

The issue will be fixed in next version of cTrader / cAlgo.

Thank you for reporting the issue and providing minimal cBot to reproduce it.


@Spotware