Replies

PanagiotisCharalampous
18 May 2020, 09:50

Hi Yuval,

No there is no such option.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
18 May 2020, 09:48

Hi again,

Can you reproduce this behavior? Is there any chance you can send us a video so that we can see what is happening?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
18 May 2020, 09:13

Hi chinovicente312,

Can you try now?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
18 May 2020, 09:12

Hi lordyy,

Did you try GetIndexByTime()?

Best Regards,

Panagiotis 

Join us on Telegram

 

 


@PanagiotisCharalampous

PanagiotisCharalampous
18 May 2020, 08:58

Hi Vitali,

We do maintenance every weekend.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
18 May 2020, 08:47

Hi Abdul,

Can we arrange a TeamViewer session so that our QA team can inspect this issue on your computer? You can contact me at community@spotware.com.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
18 May 2020, 08:38

Hi genappsforex,

Can you provide us with a simple cBot that will allow us to reproduce such a behavior?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
18 May 2020, 08:35

RE: RE:

ctid956028 said:

I wrote 2 different types of learning bots (single thread & threaded).
Also tried ML but the problems with core & framework killed that development line.
Maybe brainstorm a little about it?

 

Hi there,

What do you want to us to brainstorm about?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
18 May 2020, 08:31

Hi Nofomo,

Can you please try a clean installation and let me know if it resolves the problem?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
15 May 2020, 16:39

Hi peetman23,

There are many issues in your code like the fact that the indicator needs be initialized in OnStart (Initialize is not used anywhere in the cBot), correct parameters are not passed to the indicator and volume seems really wrong. You need to fix all these issues and any others that might be there before the cBot starts working properly.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
15 May 2020, 16:08

Hi peetman23,

You need to change 

 public Indicator pvto;

to

 public PriceVolumeTrend_Optimized pvto;

and

            // Put your core logic here
            if (pvto(LastResult) < -9)
            {
                Close(TradeType.Sell);
                Open(TradeType.Buy);
            }
            else if (pvto(LastResult) > 9)
            {
                Close(TradeType.Buy);
                Open(TradeType.Sell);
            }

to

            // Put your core logic here
            if (pvto.PVTO.LastValue < -9)
            {
                Close(TradeType.Sell);
                Open(TradeType.Buy);
            }
            else if (pvto.PVTO.LastValue > 9)
            {
                Close(TradeType.Buy);
                Open(TradeType.Sell);
            }

for the cBot to build. 

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
15 May 2020, 14:14

Hi Tj11,

There is no such option at the moment. You can only disable all sounds in Settings > General > Sounds.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
15 May 2020, 14:08

Hi chinovicente312,

Can you post a screenshot of this error message?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
15 May 2020, 14:04

Hi chinovicente312,

You need to contact IC Markets regarding this.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
15 May 2020, 12:06

Hi Stefano,

It seems something is blocking cTrader from accessing that folder. Can you please try restarting your computer?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
15 May 2020, 10:44

Hi Glen,

This is planned for one of the upcoming releases of cTrader Web.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
15 May 2020, 08:41

Hi Stefano,

Can you please do the following for me?

1) Post a screenshot of the error message you receive.

2) After the error message, send us some troubleshooting information. To do so press Ctrl+Alt+Shift+T, paste the link to this discussion in the textbox and press submit.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
15 May 2020, 08:37

Hi willyvusi04,

You can try something like the below

           if (Positions.Sum(x => x.NetProfit) > 0)
            {
                foreach (var position in Positions)
                    position.Close();
            }

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
15 May 2020, 08:33

Hi peetman23,

Can you please post the complete cBot code as well as the indicator code so that we can reproduce this issue?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
15 May 2020, 08:30

Hi radek.rozek,

This information is not available at the moment via the API.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous