Replies

PanagiotisCharalampous
07 Jul 2020, 12:31

Hi GridSurfer,

When you start following a strategy provider, your funds are transferred into a separate subaccount and deducted from your main one. The trades are not executed on your main account but on your subaccount, which is accessible only via cTrader Copy.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
07 Jul 2020, 11:36

Hi cokeplus898,

You will only get the price that has changed. Tag 269 indicates if this is a BID or OFFER price.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
07 Jul 2020, 11:04

Hi cokeplus898,

This is a subscription to spot prices. Bid and Ask prices will be streamed to you as soon as they change. What did you expect to get instead?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
07 Jul 2020, 09:23

Hi Yuval,

You need to go to C:\Users\User\AppData\Roaming\broker-cTrader\BacktestingCache and delete the contents of the folder.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
07 Jul 2020, 08:46

Hi Waxy,

It keeps the color of the previous bar.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
07 Jul 2020, 08:36

Hi ergun,

Unfortunately without source it is not possible to give you an advise. If you can create a sample indicator that reproduces the problem it would be helpful.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
07 Jul 2020, 08:31

Hi Yuval,

What past data are you referring to? Bar data? And why do you want to reload them?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
06 Jul 2020, 15:44

Hi Mohammad,

This happens because you are on a low timeframe and bars have not been loaded up to the deal's start date. For the chart to "jump" to the deal map you will need to manually scroll back the chart so that the bars are loaded.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
06 Jul 2020, 14:51

Hi john_7ko,

It uses an Event Handler.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
06 Jul 2020, 14:26

Hi MZen,

You are misundestanding ticks. Ticks represent current offers to buy and sell. In OTC markets executed trades are not available since trading takes place over the counter between two counterparties rather than on a centralized exchange.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
06 Jul 2020, 14:09

Hi MZen,

It is a property of the message. See below

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
06 Jul 2020, 14:05

Hi MZen,

Spot prices streamed through spot events represent exactly what you have described, the latest offers from buyers and sellers. So this is what you are looking for.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
06 Jul 2020, 09:30

Hi cokeplus898,

You can use the Security List Request (MsgType(35)=x) to get the list of available symbols.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
06 Jul 2020, 09:27

Hi ICalnuaimi,

cTrader Copy for mobile will be released in a future version of the mobile application. Statements for subaccounts are also coming.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
06 Jul 2020, 09:23

Hi praveenhts,

You can find Auticharist inside the symbol overview in your mobile application. The relevant feature is not available on the desktop application yet.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
06 Jul 2020, 09:18

Hi intraflay,

It seems you missed the news as well.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
06 Jul 2020, 09:16

Hi prosteel1,

You are not missing anything, this is the case at the moment. The missing members of the Timeframe class will be added in a future update of the API.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
06 Jul 2020, 09:13

Hi strausa,

Can you please explain what is the problem you are facing? The problems reported above have been resolved long time ago.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
06 Jul 2020, 09:09

Hi MZen,

You need to subscribe to spot prices using ProtoOASubscribeSpotsReq. Then current bid and ask prices will be streamed to you.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
06 Jul 2020, 09:07

Hi MZen,

1) You can add two types to the message. In C# it would look like this

            var _msg = ProtoOAGetTickDataReq.CreateBuilder();
            _msg.SetCtidTraderAccountId(accountId);
            _msg.SetSymbolId(symbolId);
            _msg.SetType(ProtoOAQuoteType.ASK);
            _msg.SetType(ProtoOAQuoteType.BID);
            _msg.SetFromTimestamp(from);
            _msg.SetToTimestamp(to);

2) ProtoOAGetTickDataRes has a hasMore field. If this is set to true, it means more messages are following. There is nothing you need to do, just read the next messages until hasMore becomes false.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous