Topics
Replies

DonaldD
07 Dec 2021, 11:57

Hi there,

We can help you with your project. You can contact us at contact@clickalgo.com for more information.

Best Regards,

Donald


@DonaldD

DonaldD
10 May 2021, 13:55

Hi there,

Check our cTrader Forex News Manager https://clickalgo.com/forex-news-manager

Best Regards,

Donald


@DonaldD

DonaldD
05 Mar 2021, 09:18 ( Updated at: 05 Mar 2021, 10:24 )

Hi Delphima, 

I am not sure if this the case, because I cannot easily reproduce it, but if it is, a way to solve it is to keep your own counter of expected open positions and execute an order only when the count of positions meets that counter e.g.

            if (Symbol.Bid >= BidAnchor && positionsCounter == Positions.Count) 
            { 
               positionsCounter++;
.
.
.

of course you will need to manage the counter accordingly e.g. decrease it when a position is closed.

 


@DonaldD

DonaldD
14 Jan 2021, 09:51 ( Updated at: 14 Jan 2021, 10:38 )

Hi Yousufkhan1614,

This is a cTrader forum. If your account is a cTrader account, then you need to use cTrader and not MT4.

 


@DonaldD

DonaldD
21 Feb 2020, 14:08

Hi Matt,

We can help you with your project. You can contact us at contact@clickalgo.com for more information.

Best Regards,

Donald


@DonaldD

DonaldD
20 Dec 2019, 08:17

Hi there,

We can help you with your project. You can contact us at contact@clickalgo.com for more information.

Best Regards,

Donald


@DonaldD

DonaldD
06 Dec 2019, 12:29

Hi wmarimbire,

We can help you with your project. You can contact us at contact@clickalgo.com for more information.

Best Regards,

Donald


@DonaldD

DonaldD
20 Nov 2019, 08:35

Hi kas,

Feel free to contact us at sales@clickalgo.com to discuss this further.


@DonaldD

DonaldD
11 Oct 2019, 12:47

Hi Spotware,

It seems that this issue still occurs. Any idea when this can be fixed?


@DonaldD

DonaldD
28 Apr 2019, 20:38

Hi Andy,

Send us an email at contact@clickalgo.com and we will take it from there.

Donald


@DonaldD

DonaldD
27 Apr 2019, 18:31

Hi Mountaindude,

It should work if you add the code in the OnTick() method. If you want us to do it for you, we can do it for a small fee since it will require some development and testing effort.

Donald


@DonaldD

DonaldD
26 Apr 2019, 22:32

Then you should try this

 PendingOrders.Count(x => x.SymbolCode == Symbol.Code);

 


@DonaldD

DonaldD
26 Apr 2019, 13:31

See below

if(Symbol.Bid < 1.11000)
{
    Stop();
}

 


@DonaldD

DonaldD
26 Apr 2019, 11:47

Hi man,

You can use the stop function https://ctrader.com/api/reference/robot/stop to do so


@DonaldD

DonaldD
26 Apr 2019, 11:44

This usually happens when you are trying to close a position that does not exist. Sharing the cBot code might shed some light to this.


@DonaldD

DonaldD
26 Apr 2019, 11:42

Hi mariusgunnerud,

What version of cTrader and broker do you use?


@DonaldD

DonaldD
25 Mar 2018, 11:45

Hi Spotware,

I confirm this happening as well. Please check

Donald


@DonaldD

DonaldD
25 Mar 2018, 11:41 ( Updated at: 21 Dec 2023, 09:20 )

Hi FMogyi,

You can maintain your library as a separate C# project and reference it through the Libraries section in the Reference Manager. I paste a screenshot below


@DonaldD