Topics
09 Apr 2025, 11:13
 16
 1
01 Apr 2025, 08:01
 59
 1
07 Mar 2025, 14:54
 72
 1
11 Feb 2025, 13:04
 162
 2
26 Jan 2025, 11:42
 156
 1
14 Jan 2025, 09:21
 158
 1
19 Dec 2024, 16:10
 0
 205
 0
11 Dec 2024, 09:55
 283
 2
04 Nov 2024, 17:12
 453
 5
22 Oct 2024, 06:29
 0
 299
 0
20 Oct 2024, 04:36
 323
 1
11 Oct 2024, 06:30
 0
 303
 0
11 Oct 2024, 06:30
 0
 319
 0
10 Oct 2024, 12:37
 310
 2
13 Sep 2024, 07:14
 1
 297
 0
21 Aug 2024, 16:28
 0
 298
 0
Replies

eynt
28 Jul 2023, 09:27

RE: define how long a cBot needs to be disconnected before the OnServerDisconnected event is triggered

Thank you,

Is there a way to know what is the current timeout set by cTrader?


@eynt

eynt
28 Jul 2023, 09:26

RE: define how long a cBot needs to be disconnected before the OnServerDisconnected event is triggered

Thank you,

Is there a way to know what is the current timeout set by cTrader?


@eynt

eynt
14 Jul 2023, 17:17

RE:

Suppose I'm using a file to communicate with the cBot. I'm guessing you meant the order to stop the cBot will be read at the OnTick method and the cBot will stop itself.

This means the order to stop the cBot has to be sent before tradinig session hours are over otherwise the OnTick method will not be called on time.

Any idea on how to send the order AFTER tradinig session hours?

 

Thank you for your help

 

 


@eynt

eynt
14 Jul 2023, 16:59

RE:

Can you please give a short example of how to communicate with the cBot via named pipes?

 

Thank you

 


@eynt

eynt
14 Jul 2023, 15:14

RE:

Thank you

 

Upon closing the CLI window manually or killing the process via code, the OnStop method is not called. How can I call it when I run a cBot via CLI?


@eynt

eynt
26 Jan 2023, 14:14

RE:

I was not aware you do not work for cTrader, I find it a bit strange there's no official support. If a user encounters some sort of a problem, who can he reach out to? I appreciate your help.

I've noticed there was a new version released which has a good chance of solving the problem. i did not have the time to check it. In the meantime, I found a workaround - I run each symbol with a different cBot app instead of several instances on the same app.

 

 


@eynt

eynt
25 Jan 2023, 12:51

RE:

If one instance works perfectly and several cause to a crash, then obviously the problem is not with the code but with the behavior of the cTrader. Especially since on older versions this problem did not exist. If new problems occur due to change in the version then these problems should be fixed and not left as " It's the way cTrader works and you need to work around it."

 

At any case the minimum I expect is to get some sort of an answer in the forum and not let me hang in the air without knowing if the subject is under investigation or completely ignore. Especially since in the past there were more than one issues which turned out to be a bug on your side and not my code.


@eynt

eynt
24 Jan 2023, 17:26

RE:

Anything new?

Thanks


@eynt

eynt
27 Dec 2022, 11:26

RE:

Hi

 

Anything new?


@eynt

eynt
30 Nov 2022, 09:31

RE: Looks like a bug. Please fix.

Hello

 

Is there an official comment from cTrader regarding this issue. If you'll allow me to be blunt for a minute, the new scrolling behavior is extremely annoying and makes no sense.

 

 

 


@eynt

eynt
17 Nov 2022, 11:17

RE: RE:

Hello

were you able to reproduce it?


@eynt

eynt
09 Nov 2022, 12:47 ( Updated at: 21 Dec 2023, 09:23 )

RE:

Hi

 

I ran a back test of the attached bot and got a print of "Spotware".

 

 

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using cAlgo.API;
using cAlgo.API.Collections;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;

namespace cAlgo.Robots
{
    [Robot(AccessRights = AccessRights.None)]
    public class NewcBot4 : 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(Account.BrokerName);
        }

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

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

 


@eynt

eynt
08 Nov 2022, 13:03

RE:

Hello

 

I am using version 4.4.17.9898 and this issue still happens

 


@eynt

eynt
07 Nov 2022, 18:27

RE: RE:

Hello

anything new on the subject?


@eynt

eynt
31 Oct 2022, 14:11

RE:

Hello

 

anything new on the subject?

 


@eynt

eynt
30 Oct 2022, 17:18 ( Updated at: 30 Oct 2022, 17:20 )

RE: RE: RE:

I wanted to add that this message box appears many times on debugging as well and not necessarily on heavy processing, to my question stands: is there a way to let the indicator do its thing without stopping after a few seconds?


@eynt

eynt
28 Oct 2022, 09:41

RE: RE:

Still waiting for an answer

 


@eynt

eynt
25 Oct 2022, 10:13

RE:

Is there a way to let it do its heavy processing without stopping it?

 

thanks


@eynt

eynt
20 Oct 2022, 16:00

RE: RE: RE:

Thank you

a. Will show me the exact data as my brokers (there are small differences between different brokers/data providers)?

b. Is there a way to upgrade my brokers cTraderes or do I have to wait for it to be upgraded automatically?

 


@eynt

eynt
20 Oct 2022, 13:46

RE:

What is cross broker cTrader and how can I download the latest version?

thanks

 


@eynt