Topics
17 May 2022, 11:22
 850
 3
14 Dec 2020, 13:38
 1445
 3
Replies

ClickAlgo
29 Aug 2024, 08:32 ( Updated at: 29 Aug 2024, 09:42 )

You will most certainly have a cBot or indicator-consuming memory, I would remove all of them and add each one until you find out the culprit. You can also download a 14-day trial of the cTrader memory manager tool to help you.

https://clickalgo.com/ctrader-memory-management


@ClickAlgo

ClickAlgo
29 Mar 2024, 06:53 ( Updated at: 29 Mar 2024, 09:06 )


@ClickAlgo

ClickAlgo
03 Feb 2024, 06:01 ( Updated at: 03 Feb 2024, 12:44 )

RE: Click algo indicaotrs for mac

ctid6605646 said: 

HI, I have tried to use some indicators from clickalgo, but they aren't compatible with Mac version. Where can I download compatible indicators like Volume Profile, Fair Value Gap, etc for Ctrader for Mac?

We are currently upgrading our products to work with the Mac OS, you can find a compatible list below.

Mac OS Upgrade List

If any of these are not working, please report it here.

 


@ClickAlgo

ClickAlgo
17 Feb 2023, 12:55

We offer a vendor program with licensing to prevent piracy, your drawdown is a little high, we accept 5-10% with 20% Net profit on a backtest.

 

 


@ClickAlgo

ClickAlgo
24 Nov 2022, 12:39

RE:

manoj.clsd.kumar@gmail.com said:

I've coded a nice indicator that I think others would find useful, and would like to sell it.

Is there some kind of official process/marketplace for this, or am I responsible to create my own website and sell it independently?

 

We offer a vendor program where you can sell your indicator on our Marketplace.

 

 


@ClickAlgo

ClickAlgo
27 May 2022, 08:56

This may help, I am also in the process of creating a free course on how to design and program your first automated trading system.

 


@ClickAlgo

ClickAlgo
16 May 2022, 16:36 ( Updated at: 17 May 2022, 11:58 )

Ahmad, is correct, we should be implementing the calls with more grace, the following call fixes the warning messages and works fine with CT 4.2

 


private void btnReverseSellers_Click(object sender, EventArgs e)
{
    _robot.BeginInvokeOnMainThread(() =>
    {
        try
        {
            foreach (var position in _robot.Positions.Where(x => (x.SymbolName == _robot.Symbol.Name)).Where(x => x.TradeType == TradeType.Sell))
            {
                position.Reverse();
            }
        }
        catch (Exception ex)
        {
            AlertPopUp msg = new Orders.AlertPopUp(ex.Message);
            msg.Show();
        }
    });
}

 


@ClickAlgo

ClickAlgo
16 May 2022, 12:34

I have found the offending code that is causing this error, this will happen to a few of our products.

Leverage = robot.Account.PreciseLeverage

The robot object is passed into the assembly class that displays the UI, all the other events work fine, but when a call is made to retrieve account information, it throws the error below.

Illegal call out of MainThread is detected. Use `BeginInvokeOnMainThread`


@ClickAlgo

ClickAlgo
16 May 2022, 11:37

ok, thank you for your time.


@ClickAlgo

ClickAlgo
08 Apr 2022, 10:51 ( Updated at: 08 Apr 2022, 10:52 )

This step-by-step guide should help.

https://ctrader.info/d/442-how-to-debug-a-cbot-using-visual-studio-2022


@ClickAlgo

ClickAlgo
07 Apr 2022, 14:12

This may also help, please correct if incorrect amusleh.

 

 


@ClickAlgo

ClickAlgo
02 Apr 2022, 11:10

This will send Telegram alerts to your mobile phone if you install the Telegram app.

 

 


@ClickAlgo

ClickAlgo
28 Mar 2022, 09:30 ( Updated at: 21 Dec 2023, 09:22 )

Hi, we have a few tools for setting your risk.

 

ctrader risk tool


@ClickAlgo

ClickAlgo
07 Mar 2022, 16:36

Hi, Florent,

 

This should help.

 


@ClickAlgo

ClickAlgo
06 Mar 2022, 20:38 ( Updated at: 06 Mar 2022, 21:02 )

I agree with cTrader.Guru the platform needs an option to load and save the optimisation settings, we partially update the settings and its a real pain the way it currently works.

The features should be the same as the cBot parameter panel


@ClickAlgo

ClickAlgo
18 Dec 2021, 15:45

RE:

sssr6552 said:

I cant find a measurement tool. Something I can quik click to measure the pips, time, bars etc. Can you tell me how to do this or please add one?

you can find a free download here.

 

 


@ClickAlgo

ClickAlgo
11 Nov 2021, 10:24

RE:

Terzys said:

Hey guys. What are some of the best cBot optimization communities you know of?

Hi, Terzys,

if you are talking about learning optimisation in general, look at the article below which will help you.

We have also started a forum to post any questions about optimisation using cTrader.

 


@ClickAlgo

ClickAlgo
07 Nov 2021, 14:03

Hi, Justine,

 

read the link below or post your code here for Spotware to investigate. 

 


@ClickAlgo

ClickAlgo
06 Nov 2021, 10:55 ( Updated at: 06 Nov 2021, 11:02 )

One possible cause is below.

.

  while (bars.OpenTimes[0] > Bars.OpenTimes[0])
                    bars.LoadMoreHistory();

.

infinite loop perhaps, this will continue to load data and use all the machines resources until the platform freezes, this could be why the cTrader Sentinal removed the offending indicator.

.

I only had a quick look, but consider checking this code to see if it is causing the probem.


@ClickAlgo