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

PanagiotisCharalampous
20 Sep 2022, 09:17

Hi sansand,

Yes server sends heartbeats every 30 seconds.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
20 Sep 2022, 09:15

Hi kanapon,

Please share your cBot code so that we can reproduce.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
19 Sep 2022, 14:26

Hi there,

Seems like a bug of the application.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
19 Sep 2022, 12:49

Hi RayAdam,

These two fields are not related. The trading sessions are global and they are a different thing to the symbol's market trading hours.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
19 Sep 2022, 12:47

Hi yaqeenmnoor,

Thanks for letting us know. Unfortunately there is not much we can do regarding goverment restrictions.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
19 Sep 2022, 12:45

Hi dionysian.apostle,

When I say gining full access, I mean here

namespace cAlgo.Robots
{
    [Robot(AccessRights = AccessRights.FullAccess)]

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
19 Sep 2022, 12:39

Hi dilshandimuthu,

You need to be more specific with your question. Which exact code do you want to change?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
19 Sep 2022, 12:35

Hi bulu.bulu27,

We need more information

  1. Your cTrader's version
  2. Your cBot's Target Framework
  3. The complete source code if possible.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
19 Sep 2022, 12:17

Hi there,

It's a known issue and it will be fixed in an upcoming update.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
19 Sep 2022, 12:15

Hi Christian,

Please post full screenshots from where you got these images that also show the strategy name so that we can see them as well.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
19 Sep 2022, 12:09

Hi webkinson,

You can find consultants here.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
19 Sep 2022, 11:09

Hi agastya.alfath,

We are not aware of any issues at the moment. Can you please send us some troubleshooting (Tap seven times on the logo inside the main menu)?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
19 Sep 2022, 10:46

Hi Perseverance,

We need the strategy name and link and an explanation why you think the ROI is wrong and what the correct value should be.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
19 Sep 2022, 10:41

Hi daniele294658,

Please contact your broker regarding this matter.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
19 Sep 2022, 10:23

Hi yuval.ein.

Here is a guide on how to use WinForns in .NET 6.0 cBots/Indicators

https://help.ctrader.com/ctrader-automate/guides/ui/WinForms/#opensave-file-dialogs

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
19 Sep 2022, 10:11

Dear johnthielen,

Heikin Ashi charts will be included in the next major release of cTrader Desktop.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
15 Sep 2022, 08:24

Hi there,

There is no such option at the moment.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
14 Sep 2022, 14:30

Hi Vadivelan,

No there isn't.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
14 Sep 2022, 14:26

Hi there,

If you have no knowledge of coding, then you can ask your programmer to do this for you or assign the job to somebody else.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
14 Sep 2022, 14:11

Hi there,

Here is a starting point to get the method right

        private bool TradingEnabled()
        {
            var @from = TimeSpan.ParseExact("11:00", "hh\\:mm", null);
            var to = TimeSpan.ParseExact("18:00", "hh\\:mm", null);
            return Server.Time.TimeOfDay >= @from && Server.Time.TimeOfDay < to;
        }

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous