PanagiotisCharalampous's avatar
PanagiotisCharalampous
26 follower(s) 0 following 1006 subscription(s)
Replies

PanagiotisCharalampous
09 Dec 2019, 08:35

Hi dynamites,

News are not added on the chart yet. This will be added in a future release. Events can be filtered by symbol.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
09 Dec 2019, 08:31

Hi Patrick,

Indeed, templates are not backwards compatible. You should be overriding your templates if you plan to use them on an older version.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
06 Dec 2019, 09:25

Hi eofe,

Christmas was the target for the Beta :) We cannot give an ETA for release to brokers, it depends on how the Beta testing will go. We will release to brokers as soon as we are confident that 3.7 is stable enough for production environments.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
06 Dec 2019, 09:03

Hi ctraderftmo+115,

We are considering two factor authentication for future versions of cTrader ID but at the moment this is the only secure option. Regarding

they simply could not get my account operational again 

If the broker has issues with this they should contact us directly to check it. 

Best Regards,

Panagiotis 


@PanagiotisCharalampous

PanagiotisCharalampous
06 Dec 2019, 08:50

Hi calagan33,

Please try the solution proposed in this video and let us know if it solves the problem for you.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
06 Dec 2019, 08:38

Hi eofe,

The bar's open time is taken from the first new tick that will arrive for that bar. This is why you get different opening times.

Regarding sample, I am not sure what do you need exactly but below you can see a very simple example of listening to the BarOpened event

using System;
using System.Linq;
using cAlgo.API;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
using cAlgo.Indicators;

namespace cAlgo.Robots
{
    [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class BarOpenedExample : Robot
    {
        protected override void OnStart()
        {
            var bars = MarketData.GetBars(TimeFrame.Minute, "GBPUSD");
            bars.BarOpened += Bars_BarOpened;
        }

        private void Bars_BarOpened(BarOpenedEventArgs obj)
        {
            Print("New bar created for " + obj.Bars.SymbolName + " at " + obj.Bars.Last(0).OpenTime);
        }
    }
}

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
05 Dec 2019, 17:20

Hi A.R.

Thanks for the code. We managed to reproduce it and it seems to be an issue on our side. We will fix it in an update.

Best Regards,

Panagiotis 

Join us on Telegram

 

 


@PanagiotisCharalampous

PanagiotisCharalampous
05 Dec 2019, 16:55 ( Updated at: 21 Dec 2023, 09:21 )

Hi Xavier R,

1) As a good practice please try to create new threads for such discussions. It will be easier for future searches by other users.

2) I am not sure what is the issue. The 16 seconds? Note that this data needs be downloaded from the server so you should also take that into consideration. In my case, bars are loaded almost instantly. See below

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
05 Dec 2019, 16:38

Hi all,

This feature has been released. Find more information here.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
05 Dec 2019, 16:36

Hi redblue,

Please post your suggestions in the Suggestions section of the forum.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
05 Dec 2019, 14:05

RE: RE:

tmfd said:

Great multi symbol backtesting functionality has been released.  However when backtesting is it possible to view multiple charts for one backtest, i.e. I have an algo which uses EURUSD, and has GBPUSD as an additional symbol in the code, I then backtest against EURUSD but it also opens positions on GBPUSD, it is possible to see these GBPUSD positions on a GBPUSD chart?  I know they can be seen on the EURUSD chart.

Thanks

Hi tmfd,

Unfortunately this is not possible at the moment.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
05 Dec 2019, 14:04

Hi,

I am not aware of such restriction, it sounds like a StackOverflow exception but I cannot advise further if I cannot reproduce your problem.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
05 Dec 2019, 12:36 ( Updated at: 21 Dec 2023, 09:21 )

Hi mbv4f,

The information is already there. See below how you can find it 

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
05 Dec 2019, 11:47

Hi tnt_22,

Thanks for the additional information. We managed to reproduce it and we will fix it soon.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
05 Dec 2019, 10:32

Hi A.R.

Can you please explain where does it say it is too many? Can you provide a complete cBot code that will allow us to reproduce the message?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
05 Dec 2019, 10:26

RE: RE:

Waxy said:

Hello Spotware,

These are indeed great additions,

I see now that when I load an indicator that uses multiple MarketSeries (or now Bars) it takes much less than before, and this is great news, but at the start, it takes the same as before, so, I'd like to know if it's possible to improve or what's the best way now to load multiple series loading for indicators/bots during initialization, let's say I want to load 10 symbol bars, can I load these in parallel now?

 

Hi Xavier,

You can use MarketData.GetBarsAsync() and MarketData.GetTicksAsync() to get data asynchronously.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
05 Dec 2019, 10:21

Hi firemyst,

You can find the answer here.

Best Regards,

Panagiotis 

Join us on Telegram

 

 


@PanagiotisCharalampous

PanagiotisCharalampous
05 Dec 2019, 10:03

Hi velu130486,

If you need somebody to help you develop a cBot, you can always contact a Consultant or post a Job.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
05 Dec 2019, 09:59

Hi tgjobscv,

Can please elaborate on your question? I am not sure what are you trying to find out here.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
04 Dec 2019, 15:02

Hi tnt_22,

Could you please show the ATP window on ATP which is greyed out? Also we need the position details. Alternatively we can arrange a team viewer session and our QA team will take a look at this issue.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous