Replies

PanagiotisCharalampous
28 Nov 2018, 15:12

Hi derangedlol,

We have released an update today that fixes this issue. Can you please install it and confirm?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Nov 2018, 11:48

Hi RustyNomad,

I get your point and I understand the benefits of this approach however it contradicts with our business model at the moment. cTrader is a white labeled solution and allows brokers to customize their clients experience. Each broker tries to differentiate the offered services hence you will notice differences from cTrader to cTrader. Merging all brokers under one cTrader will eliminate this possibility.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Nov 2018, 11:32

Hi RustyNomad,

Since each broker has his own cTrader platform, you can only trade with the accounts of the broker owning the cTrader platform you run. cTrader Copy is a cross broker application and allows you to create subaccounts using any account of any member broker and follow strategies from the same or another broker. There are no plans to change this at the moment.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Nov 2018, 10:34

Hi Eklon,

We released an update today. Can you check if you have received it?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Nov 2018, 10:31

Hi dmn,

We have released an update today that fixes this issue. Let me know if you have received it.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Nov 2018, 10:26

Hi dmn,

The object list is the only place where you can access the objects on the chart. I will discuss with the product team how we can make it more usable.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Nov 2018, 10:22

Hi all,

I suggest that you post this idea in UserVoice so that we can measure the demand for it. There are countless feature requests but we have finite resources therefore UserVoice helps us to prioritize based on demand. In UserVoice you will notice that suggestions with the highest amount of votes are managed accordingly.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Nov 2018, 10:13

Hi dmn,

Stop losses and take profits are not shown in the Orders tab.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Nov 2018, 10:01

Hi Mihai,

Here it is

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

namespace cAlgo.Robots
{
    [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class NewcBot : Robot
    {
    
        protected override void OnStart()
        {

            Chart.MouseDown += Chart_MouseDown;
        
        }

        private void Chart_MouseDown(ChartMouseEventArgs obj)
        {
            Print("Time: " + obj.TimeValue);
            Print("Price: " + obj.YValue);
        }

        protected override void OnTick()
        {
            // Put your core logic here
        }

        protected override void OnStop()
        {
            // Put your deinitialization logic here
        }
    }
}

We are working on the documentation as well :)

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Nov 2018, 09:50

Hi dmn,

This is by design. All changes are saved automatically to your workspace. Save workspace is used for saving the settiings on a new on another workspace.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Nov 2018, 09:44

Hi dmn,

There is no way to disable this feature.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Nov 2018, 09:24

Hi dmn,

I could not reproduce a serious delay in workspace switching. Can you post a screenshot of such a setup? The heavier it is, the longer will take to load.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Nov 2018, 09:18

Hi dmn,

There is no such feature available. If you want, you can suggest it on our UserVoice forum. Also, you can have four charts open at all times and switch between them.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Nov 2018, 17:56

Hi lec0456,

The exception happens if your network connectivity is lost. Regarding 3.3, indeed it reloads tick data since we changed the format and new tick data needs to be downloaded again.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Nov 2018, 14:22

Hi derangedlol,

It is a known bug and will be fixed soon.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Nov 2018, 14:20

Hi Ian,

Here it is

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

namespace cAlgo.Robots
{
    [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class NewcBot : Robot
    {
        [Parameter(DefaultValue = 0.0)]
        public double Parameter { get; set; }

        Position _position;
        protected override void OnStart()
        {
            Positions.Closed += OnPositionsClosed;
        }
        
        void OnPositionsClosed(PositionClosedEventArgs obj)
        {
            _position = obj.Position;
        }

        protected override void OnTick()
        {
            // Put your core logic here
        }

        protected override void OnStop()
        {
            // Put your deinitialization logic here
        }
    }
}

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Nov 2018, 12:58

Hi Ian,

You can access the position information from the Position parameter of the obj argument.

Let me know if this helps.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Nov 2018, 12:26

Hi ctid723683,

You can paste it here or send it to me at community@spotware.com.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Nov 2018, 12:14

Hi GammaQuant,

What you describe is possible from our backend system. You could consider becoming a broker or getting a white label from a broker and manage your accounts. 

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Nov 2018, 11:13

Hi lec0456,

Can you please provide us with the following information?

  1. Is it a Demo or Live account?
  2. Symbol
  3. Backtesting Period.
  4. Timeframe.
  5. Data source (ticks or bars).

Best Regards,

Panagiotis


@PanagiotisCharalampous