Replies

PanagiotisCharalampous
31 Mar 2020, 15:05

Hi travkinsm1,

It seems to be an issue with the indicator but I am not sure what exactly is causing this. 

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
31 Mar 2020, 12:09

Hi there,

Can you post a screenshot of the relevant code part as below? As you can see I can login without any issues. I have changed nothing from the example application except the proxy and credentials.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
31 Mar 2020, 10:32

Hi nmaxcom,

OnBar() is called whenever a bar is closed and a new bar is created. It is a simultaneous event, there is no in between situation. Last(0) represents the current bar and Last(1) the bar before. It is just a convention that you need to get used to it. 

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
31 Mar 2020, 09:10

Hi nmaxcom,

I don't understand what is the problem with Last(1). Can you please explain?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
31 Mar 2020, 09:06

Hi there,

RET_INVALID_DATA indicates a wrong password. Can you please check your password again?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
31 Mar 2020, 08:30

Hi mrha1000,

You need to provide more information. What error do your get?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
31 Mar 2020, 08:27

Hi there,

HLC charts are not available in cTrader desktop at the moment.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
31 Mar 2020, 08:23

Hi trading.university01,

There is no such option at the moment unfortunately.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
31 Mar 2020, 08:18

Hi driftingprogrammer,

I still need the exact chart you are using. Which renko/range chart is it? Just send us a full screenshot of cTrader and we will figure this out.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
31 Mar 2020, 08:13

Hi kittu.ce10,

To start learning how to program using the API, you can start by looking at our cTrader Automate guide and the cTrader Automate Reference. Let me know if you have any specific questions.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
30 Mar 2020, 15:31

Hi driftingprogrammer,

Can you please tell us your broker and the exact chart we are looking at?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
30 Mar 2020, 08:26

Hi Anton,

Yes you can use the Y property of the ChartHorizontalLine object.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
30 Mar 2020, 08:19

Hi astrolog,

Suggestions should be posted in the Suggestions section

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
30 Mar 2020, 08:18

Hi Abbas0521,

This issue has been fixed and a hotfix has been released. Can you please provide us with a cBot that reproduces such an issue?

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
30 Mar 2020, 08:16

Hi one541,

The History collection contains all the deals of the trading account. There is no specific limitation.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
30 Mar 2020, 08:14

Hi MiguelAlf,

Please check this issue with your broker first.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
30 Mar 2020, 08:13

Hi Shares4UsDevelopment,

You can always turn off your notifications in Settings>Notifications.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
30 Mar 2020, 08:09

Hi terry2,

There was maintenance going on at that time. Can you please try again?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
30 Mar 2020, 08:08

RE: RE:

Hi firemyst,

This will be fixed in v3.8. There is no plan to have such a setting for all functions of cTrader.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
30 Mar 2020, 08:04

Hi elmpie,

See an example below on how to load more history

Print("{0} bar on the chart. Loading 10 000 bars", Bars.Count);
while (Bars.Count < 10000)
{
    var loadedCount = Bars.LoadMoreHistory();
    Print("Loaded {0} bars", loadedCount);
    if (loadedCount == 0)
        break;
}
Print("Finished, total bars {0}", Bars.Count);

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous