Topics
10 Jan 2023, 11:35
 543
 3
Replies

evgrinaus
11 Jan 2023, 00:42

Fixed now thanks

It seems my Windows update required several more reboots to fix the issue.


@evgrinaus

evgrinaus
07 Aug 2022, 09:58

RE: RE:

firemyst said:

PureForm said:

Ok, so I stripped down a working indicator line by line to see what makes it update and found the following workaround.

for (int i=1; i<=500; i++)
{
    double j = Bars.MedianPrices.LastValue - Bars.MedianPrices.Last(i);
}


Add this code to the Calculate() function. It seems to wake up the indicator or feeds it bar data.
As you can see this is unnecessary taxing. I haven't found a solution that works with the Initialize() function.

This bug should be fixed ASAP.

You will want to change your code to be more like the following so it's not running through that loop when the markets are open:

if (!Symbol.MarketHours.IsOpened())
{
	for (int i=1; i<=500; i++)
	{
	    double j = Bars.MedianPrices.LastValue - Bars.MedianPrices.Last(i);
	}
}

 

And it's completely ridiculous that a version of cTrader would even get released with a bug like this... Spotware definitely needs to fix it asap!

 

Cannot add code as the indicators I use are moving averages and CCI


@evgrinaus

evgrinaus
07 Aug 2022, 09:17

No indicators nor Text Boxes showing

Version 4.2.18 not showing indicators nor even text box creations


@evgrinaus

evgrinaus
30 Oct 2021, 23:33

RE: same memory leak with no Cbot's running

demozi2K17 said:

Since I updated my cTrader from ver 4 to ver 4.1 I started running with connection issues delays changing the charts. Also, I notice a big increase in memory usage what makes the platform almost stop if I left it open. I didn't have any of these issues on Ver 4.0. It seems the program has some memory leaks.

I will try to re-install the ver 4 again

 

Thanks 

 


@evgrinaus

evgrinaus
09 Jan 2021, 11:21 ( Updated at: 21 Dec 2023, 09:22 )

RE:

PanagiotisCharalampous said:

Hi Waxy,

Could you please send some more information about this to feedback@spotware.com so that they can investigate further? Please let them know your broker, account numbers and when do these disconnections happen. Even a short video demonstrating this behavior would be very helpful.

Best Regards,

Panagiotis

Happening again...

Does Ctrader have a status page to show maintenance outages


@evgrinaus

evgrinaus
09 Jan 2021, 02:34 ( Updated at: 09 Jan 2021, 03:08 )

BTC?USD is not found

 Why is Bitcoin feed down on weekends when I need to demo  trade ?

Is CTrader not a full time portal?

If it is a Broker Issue, who is the broker?


@evgrinaus

evgrinaus
24 Dec 2020, 07:43

Totally support the idea

This would be a valuable idea to assist in perfecting a bot or strategy. I totally support the idea.


@evgrinaus

evgrinaus
22 Nov 2020, 08:17

Back testing not working in weekends !!!

Same here. I do all my backtesting in the weekends to test my cbots. I might have to resort to MT5 if this does not get resolved soon.


@evgrinaus