Replies

soskrr
04 Apr 2025, 11:45

RE: RE: RE: Multiple HTTP Requests Failing After First Request in cTrader 5.3.49

ctid8068054 said: 

soskrr said: 

bml67 said: 

Update:

I just tested the newly released cTrader version 5.3.60 today — unfortunately, the bug still persists.

The second HTTP request (regardless of where it’s placed — OnStart, OnTimer, etc.) still fails silently after the first one succeeds.

Any update yet? Did you get an estimated time?

Best Regards

 

Hello there, would anyone know of a workaround until cTrader bug fixed and released ? I am stuck on 5.2.5 

Hi, did you get a way to work around this? 


@soskrr

soskrr
25 Mar 2025, 13:26

RE: Multiple HTTP Requests Failing After First Request in cTrader 5.3.49

bml67 said: 

Update:

I just tested the newly released cTrader version 5.3.60 today — unfortunately, the bug still persists.

The second HTTP request (regardless of where it’s placed — OnStart, OnTimer, etc.) still fails silently after the first one succeeds.

Any update yet? Did you get an estimated time?

Best Regards


@soskrr

soskrr
25 Mar 2025, 13:26

RE: Multiple HTTP Requests Failing After First Request in cTrader 5.3.49

bml67 said: 

Update:

I just tested the newly released cTrader version 5.3.60 today — unfortunately, the bug still persists.

The second HTTP request (regardless of where it’s placed — OnStart, OnTimer, etc.) still fails silently after the first one succeeds.

Any update yet? Did you get an estimated time?

Best Regards


@soskrr

soskrr
23 Mar 2025, 08:16 ( Updated at: 24 Mar 2025, 07:00 )

RE: cAlgo API Http raises error when sending two or more requests

firemyst said: 

How do we know if you're doing anything wrong when you haven't posted any sample code demonstrating what you are doing?

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

namespace cAlgo.Plugins
{
    [Plugin(AccessRights = AccessRights.None)]
    public class Test : Plugin
    {
        protected override void OnStart()
        {
            Test1();
            //Test2();
        }

        private void Test1()
        {
            HttpResponse res = Http.Get("https://jsonplaceholder.typicode.com/todos/2");
            if(res.IsSuccessful && res.StatusCode == 200)
            {
                Print(res.Body);
                MessageBox.Show(res.Body);
            }
            Sleep(5000);
            HttpResponse res2 = Http.Get("https://jsonplaceholder.typicode.com/todos/2");
            if(res2.IsSuccessful && res2.StatusCode == 200)
            {
                Print("Success2");
            } else 
            {
                MessageBox.Show(res2.Exception.ToString());
            }
        }

        private void Test2()
        {
            Http.GetAsync("https://jsonplaceholder.typicode.com/todos/2", res => 
            {
                if(res.IsSuccessful && res.StatusCode == 200)
                {
                    MessageBox.Show(res.Body);
                    Http.GetAsync("https://jsonplaceholder.typicode.com/todos/1", res2 => 
                    {
                        if(res.IsSuccessful && res2.StatusCode == 200)
                        {
                            MessageBox.Show(res2.Body);
                        } else {
                            MessageBox.Show(res2.Exception.ToString());
                        }
                    });
                }
            });
            Http.GetAsync("https://jsonplaceholder.typicode.com/todos/3", res => 
            {
                if(res.IsSuccessful && res.StatusCode == 200)
                {
                    MessageBox.Show(res.Body);
                } else {
                    MessageBox.Show(res.Exception.ToString());
                }
            });
        }

        protected override void OnStop()
        {
            // Handle Plugin stop here
        }
    }
}

Here's the code.


@soskrr

soskrr
22 Mar 2025, 11:10

Hi,

i am getting this error as well. It happened after the most recent update. did you get a way to fix it ?


@soskrr

soskrr
21 Mar 2025, 14:58

RE: RE: RE: RE: Not able to build cBots after new update.

andi21 said: 

soskrr said: 

BernhardCS said: 

andi21 said: 

I can build with no errors now - has been fixed with the new nuGet Package 1.0.12.

Thank you for the quick correction of this exception.

Best regards,

andi21

Hi andi21,

thanks, works for me also as well now.

Best regards,

Bernhard

Hi, how did you update the package?

I think if you use the BuiltIn-Editor in cTrader it should be the same behaviour like in Visual Studio, so if you rebuild the project in Visual Studio the nuget-Packages should also be updated. Have a look in the solution explorer of Visual Studio:

[ProjectName]

  Dependencies

     Packages

        cTrader.Automate (1.0.12)

Best regards,

andi21

Thanks a lot, have fixed it.


@soskrr

soskrr
21 Mar 2025, 11:47

RE: RE: Not able to build cBots after new update.

BernhardCS said: 

andi21 said: 

I can build with no errors now - has been fixed with the new nuGet Package 1.0.12.

Thank you for the quick correction of this exception.

Best regards,

andi21

Hi andi21,

thanks, works for me also as well now.

Best regards,

Bernhard

Hi, how did you update the package?


@soskrr

soskrr
21 Mar 2025, 11:47

RE: RE: Not able to build cBots after new update.

BernhardCS said: 

andi21 said: 

I can build with no errors now - has been fixed with the new nuGet Package 1.0.12.

Thank you for the quick correction of this exception.

Best regards,

andi21

Hi andi21,

thanks, works for me also as well now.

Best regards,

Bernhard

Hi, how did you update the package?


@soskrr

soskrr
20 Mar 2025, 21:10

RE: Not able to build cBots after new update.

andi21 said: 

Dear Community,

i have the same problem / exception here, too.

cTrader 5.2.5

cTrader.Automate 1.0.11

Hope anyone can help us with this.

Best regards,

andi21

One way to work around this is by using the embeded compiler. 


@soskrr

soskrr
06 Oct 2024, 08:51 ( Updated at: 06 Oct 2024, 12:12 )

RE: RE: RE: Is it possible to get values from ChartIndicator

firemyst said: 

soskrr said: 

PanagiotisCharalampous said: 

Hi there,

It is not possible to get the values from the chart indicator. You would need to create the indicator inside your cBot instead.

Best regards,

Panagiotis

Hi there,

Let's say I have the Indicator's name “MovingAverage”, how can I create the indicator using that string? 

		assembly = typeof(cAlgo.API.Indicators.MovingAverage).Assembly;        Type type = assembly.GetType("cAlgo.API.Indicators.SimpleMovingAverage");        object instance = Activator.CreateInstance(type, new obj[] { //prams });

Can I use an assembly to do this ?

 

Thank you

 

Did you even look at the example URL link I provided? 

Spotware has provided an example there for the SMA.

 

hi,

it's a different scenario. I know how to initialise an indicator. what i am trying to do is, first getting all names of indicators added to a chart. then from the names i can initailie indicators (We don't know what indicators they will be). Finally, we can read their values. Hope I explained clear.

I think using System.Reflection can achieve that.

object result = Indicators.GetType().GetMethod("IndicatorName").Invoke(Indicators, new object[] { params };DataSeries data = (DataSeries)result.GetType().GetProperty("PropertyName").GetValue(result);

  That's what I think that can achieve my thoughts, I don't know if it is the right way. Please correct me if i am wrong.

 

Thank you


@soskrr

soskrr
06 Oct 2024, 08:37

RE: RE: RE: Is it possible to get values from ChartIndicator

firemyst said: 

soskrr said: 

PanagiotisCharalampous said: 

Hi there,

It is not possible to get the values from the chart indicator. You would need to create the indicator inside your cBot instead.

Best regards,

Panagiotis

Hi there,

Let's say I have the Indicator's name “MovingAverage”, how can I create the indicator using that string? 

		assembly = typeof(cAlgo.API.Indicators.MovingAverage).Assembly;        Type type = assembly.GetType("cAlgo.API.Indicators.SimpleMovingAverage");        object instance = Activator.CreateInstance(type, new obj[] { //prams });

Can I use an assembly to do this ?

 

Thank you

 

Did you even look at the example URL link I provided? 

Spotware has provided an example there for the SMA.

 

Hi,

It's a different scenario


@soskrr

soskrr
05 Oct 2024, 22:37

RE: Is it possible to get values from ChartIndicator

PanagiotisCharalampous said: 

Hi there,

It is not possible to get the values from the chart indicator. You would need to create the indicator inside your cBot instead.

Best regards,

Panagiotis

Hi there,

Let's say I have the Indicator's name “MovingAverage”, how can I create the indicator using that string? 

		assembly = typeof(cAlgo.API.Indicators.MovingAverage).Assembly;
        Type type = assembly.GetType("cAlgo.API.Indicators.SimpleMovingAverage");
        object instance = Activator.CreateInstance(type, new obj[] { //prams });

Can I use an assembly to do this ?

 

Thank you


@soskrr

soskrr
28 Sep 2024, 13:49 ( Updated at: 29 Sep 2024, 04:41 )

RE: MacOS App Backtesting

akhilascoder said: 

Backtesting is now available in Mac (Version 5.0 (20)). I'm using it for a while now.

Hi

How did you get the update?

 


@soskrr