Replies

PanagiotisCharalampous
24 Jun 2020, 08:11

Hi glenn.mcsweeney,

Can you please explain which apps are you trying to run?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
24 Jun 2020, 08:10

Hi Yuval,

You can use a Timer

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
24 Jun 2020, 08:08

Hi iucpxleps,

There is no built in VWAP indicator in cTrader. But you can access market depth using the API. Check here.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
24 Jun 2020, 08:06

Hi Kobit,

You need to check with your broker if these orders have been executed but rejected for any reason e.g. not enough funds. If these orders have not been executed at all, please let us know to investigate further.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
23 Jun 2020, 16:43

Hi Delphima,

See below

        protected override void OnBar()
        {
            Print("LastHigh: " + Bars.HighPrices.Last(1) + " LastLow: " + Bars.LowPrices.Last(1));
        }

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
23 Jun 2020, 16:37 ( Updated at: 21 Dec 2023, 09:22 )

Hi Jese123.jm,

Just right click on your chart, go to Viewing Options and uncheck Deal Map

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
23 Jun 2020, 08:14

Hi ctid1792346,

There is no such option at the moment.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
22 Jun 2020, 16:45

Hi Futuresmo,

No this information is not provided by the API. You need to calculate it yourself using history and market data at the moment you need the equity for.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
22 Jun 2020, 16:35

Hi Andrea,

It should open a browser to sign in to your Google account. If you can record a short video demonstrating that you click on the button and nothing happens, I can send it to the product team for further investigation.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
22 Jun 2020, 16:32

Hi Timo,

If you are backtesting on the hourly timeframe then of course it will. OnBar() is triggered on every hour and OnTick() on every minute.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
22 Jun 2020, 16:19

Hi Andrea,

Did you try signing in with your cTrader ID? Do you have a problem?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
22 Jun 2020, 16:11

Hi Andrea,

You cannot choose a proxy in cTrader. cTrader chooses the best proxy automatically and connects to it.

Best Regards,

Panagiotis 

Join us on Telegram

 

 


@PanagiotisCharalampous

PanagiotisCharalampous
22 Jun 2020, 16:09

Hi Timo,

Which timeframe do you use for backtesting? Can you share your code so that we can reproduce what you see?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
22 Jun 2020, 15:33

Hi glikoz,

Change 

  MarketDepth = 0;

to

  MarketDepth = 1;

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
22 Jun 2020, 15:30

Hi thuyetdz,

See below

        protected override void OnBar()
        {
            foreach (var order in PendingOrders)
            {
                order.Cancel();
            }
        }

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
22 Jun 2020, 14:03

Hi 0000wj,

The equity chart includes only the deposits made by the strategy provider. The deposits in the summary section include all deposits made to the account (trader deposits,commissions, fees etc.). This is the reason for this discrepancy.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
22 Jun 2020, 12:23

Hi James,

There is no option at the moment. You can use the Suggestions section in case you want to suggest this feature.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
22 Jun 2020, 11:54

Hi Luca,

Yes correct.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
22 Jun 2020, 11:50

Hi Luca,

You are not printing the last bar but the bar before. To get the last bar you need to use Last(0).

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
22 Jun 2020, 11:33

Hi Luca,

It seems correct to me.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous