Replies

PanagiotisCharalampous
25 May 2021, 08:28

Hi tradeandinvest31,

Can you please share your code and explain what the problem is?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
25 May 2021, 07:57

Hi firemyst,

This method is triggered every time any object is updated. You cannot change this behavior. You need to check for the object type inside the event handler before operating on the relevant object.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
24 May 2021, 12:11

Hi iddqd,

Thanks for reporting this. We managed to reproduce the problem. It will be fixed in a future update.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
24 May 2021, 08:21

Hi Peter,

You can find some more brokers here.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
24 May 2021, 08:16

Hi yanyshevfinance,

In order for your followers to be able to follow you, their broker needs to offer the same symbols. Else the trades won't be able to be copied.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
24 May 2021, 08:14

Hi all,

Thanks for reporting this. The team is investigating this issue.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
24 May 2021, 08:08

Hi ctid4201136,

It seems you are using Spotware cTrader Beta. You need to use FxPro cTrader application.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
21 May 2021, 16:58

Hi horrido,

If they are, they should be both visible. If they are not, please provide the broker and account numbers to check.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
21 May 2021, 07:52

Hi mastakfx,

That is good news!

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
21 May 2021, 07:50 ( Updated at: 21 Dec 2023, 09:22 )

Hi briannoden,

There is no separate cAlgo application for years now. cAlgo has been merged to cTrader. You can find it in the Automate tab. See below

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
21 May 2021, 07:48

Hi acl88,

There is still no ETA for this feature.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
21 May 2021, 07:44

Hi MrWaghela,

Live accounts are not accessible using Spotware cTrader Beta. You can access your OctaFX accounts only from OctaFX cTrader.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
20 May 2021, 15:33

Hi amml,

Try this cTrader.exe /compile={path_to_csproj}

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
20 May 2021, 10:01

Hi horrido,

It's a separate infrastructure. Talk to your broker and they will understand.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
20 May 2021, 10:00

Hi mastakfx,

Can you try a clean installation as well and let me know if it resolves the problem?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
20 May 2021, 08:03

Hi horrido,

Talk to your broker to make sure both accounts are on the same white label.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
19 May 2021, 15:05

Hi cAlgoBuddy,

This happens because in the following case, the constructor method returns the same indicator.

            _diPlusFilter = Indicators.GetIndicator<MyDiPlus>(14);
            _diPlusFilter.Bars = Bars;
            _diPlusFilter.Init();

            _diPlusSignal = Indicators.GetIndicator<MyDiPlus>(14);
            _diPlusSignal.Bars = SignalBars;
            _diPlusSignal.Init();

_diPlusFilter and _diPlusSignal are references to the same object. To force the constructor to return a new object, create a dummy parameter and pass a differrert value every time e.g.

            _diPlusFilter = Indicators.GetIndicator<MyDiPlus>("Bars", 14);
            _diPlusFilter.Bars = Bars;
            _diPlusFilter.Init();

            _diPlusSignal = Indicators.GetIndicator<MyDiPlus>("Signal", 14);
            _diPlusSignal.Bars = SignalBars;
            _diPlusSignal.Init();

Hope this helps.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
19 May 2021, 11:40

Hi Mine,

If you have concerns about the execution price, you will have to talk to your broker.

 

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
19 May 2021, 11:27

Hi Mine,

The difference is only some ms which is normal for the copying process. Deviations in entry and exit prices are expected. This is clearly explained in our EULA

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
19 May 2021, 08:22

Hi Shoaib,

You can try our FIX API example as well, which works fine if you use the correct credentials.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous