Topics

Forum Topics not found

Replies

septumrar
01 May 2020, 09:01

RE:

PanagiotisCharalampous said:

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

Thanks!!! It's really works


@septumrar

septumrar
10 Apr 2020, 05:27

How soon can expect implementation?


@septumrar

septumrar
10 Apr 2020, 05:23

RE:

PanagiotisCharalampous said:

Hi ctid640565,

There is no such feature available yet in cTrader.

Best Regards,

Panagiotis


 
Be sure to need this feature. Especially so that the robot itself can load up to the desired date. For example, I uploaded a schedule manually. I launched the robot. And when the robot is working and the connection is disconnected, the schedule is reset and all work stops. I have to watch all the time whether the schedule is reset automatically or not.

Please implement the function of loading a specific date through some function through the C # code.

@septumrar