Replies

PanagiotisCharalampous
02 Sep 2020, 10:52

Hi a.raulinaitis,

It seems that by default .Net can handle up to 64 logical processors. We will change this setting in an upcoming update.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
02 Sep 2020, 10:07

Hi Ricardo,

Your account seems to have 0 balance and you are copying at 100x the strategy's volume. Make sure your account has enough balance and margin to place such big trades.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
02 Sep 2020, 09:06

Hi firemyst,

The only way I can think of to get around this is to use two IndicatorDataSeries for each case and use them interchangeably so that gaps are maintained. 

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
02 Sep 2020, 08:28

Hi firemyst,

You are missing the case where the values are equal :)

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
02 Sep 2020, 08:11

Hi Ricardo,

You need to provide more information to us. Please provide us with the following

1) Strategy name

2) Follower's account number and broker

3) Screenshot's from strategy provider's history and follower's history showing which trades have not been copied.

Best Regards,

Panagiotis 

Join us on Telegram

 

 

 


@PanagiotisCharalampous

PanagiotisCharalampous
02 Sep 2020, 08:07

Hi firemyst,

Yes it is. I don't see anything wrong. Can you elaborate?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
02 Sep 2020, 07:56

Hi dddman1000,

There are only two possibilities that could make a cBot stop 1) You stopped it manually 2) There was an issue in the code e.g. an exception, and the cBot stopped. If you did not stop it manually, then check the cBot log and you will probably see the reason.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
01 Sep 2020, 15:28

Hi Lucian,

This happens because you open positions before the last one is closed but you use the last closed volume. If you want subsequent trades to double the volume, then you need to use the last opened volume and not the last closed volume.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
01 Sep 2020, 15:08

Hi Lucian,

What do you mean when you say it is getting "double orders"?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
01 Sep 2020, 10:45

Hi uvwxyz,

We need more information about this issue. Please post the indicator code and exact steps to reproduce the problem.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
01 Sep 2020, 09:21

Hi Lucian,

Can you post your cBot's code and explain to us why do you think it is not working?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
01 Sep 2020, 08:02

Hi consy01s,

For execution issues, please contact your broker.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
01 Sep 2020, 08:00

Hi ricardotapiagallegos9605,

In order to help you, you need to report your problem in English and provide more information.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
01 Sep 2020, 07:58

Hi Luca,

You need to rewrite the code from scratch. This one does not make any sense. How will the condition be updated if it the code does not exit the loop?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
31 Aug 2020, 17:17

Hi a.raulinaitis,

Can you please confirm that you use all your pc resources?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
31 Aug 2020, 17:08

Hi Luca,

This will never trigger because you have programmed an infinite while loop. There is no way for the condition to become true.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
31 Aug 2020, 15:57

Hi honeybadger,

The limit at the moment is 1000 characters but we will consider increasing it. 

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
31 Aug 2020, 14:20

Hi Yuval,

It could happen under some circumstances. If you provide us with more information, we can check it.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
31 Aug 2020, 10:51

Hi vldmarton,

Here is the explanation for static members

A non-static class can contain static methods, fields, properties, or events. The static member is callable on a class even when no instance of the class has been created. The static member is always accessed by the class name, not the instance name. Only one copy of a static member exists, regardless of how many instances of the class are created. Static methods and properties cannot access non-static fields and events in their containing type, and they cannot access an instance variable of any object unless it's explicitly passed in a method parameter.

from Microsoft

When the cBot is optimized then many instances of the same class are initialized, sharing eventually the one and only copy of the static members.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
31 Aug 2020, 10:15

Hi vldmarton,

The problem is with your code. You need to remove the static keyword from everywhere. Else the parameters are shared between instances and a mess is caused.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous