Replies

PanagiotisCharalampous
23 Oct 2020, 08:30

Hi m.mohammadreza.m.s,

You can use PlotType.Points to display points on your chart. If you need to show only specific points then you can set all other values to NaN.

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
23 Oct 2020, 08:03

Hi YouFX,

You can get the opening times of bars using OpenTimes time series. 

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
22 Oct 2020, 16:11

Hi JeanPaul,

cTrader offers you the option to backtest a cBot that places trades on multiple instruments. If you need different parameters per instrument, you need to program this yourself. The overall results will be for all the instruments you have placed trades for. If you want to backtest multiple instances at the same time, then this is not possible neither we have plans for such a feature.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
22 Oct 2020, 09:10

Hi tgjobscv,

This platform is not supported by us.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
22 Oct 2020, 08:25

Hi GinoongULap,

You can use cTrader Copy.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
22 Oct 2020, 08:23

Hi fcomanjoncabeza,

There is no difference, it is the same value.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
22 Oct 2020, 08:18

Hi plms702,

Yes it is possible. There is nothing special you need to do, just create your strategy and follow with the rest of the accounts you wish to follow.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
22 Oct 2020, 08:15

Hi m.francomano,

Yes it does. In the meanwhile, please go to  C:\Users\UserName\AppData\Roaming\broker cTrader\Settings, delete the contents of the folder and let me know if this fixes the issue.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
21 Oct 2020, 16:50

Hi JeanPaul,

If you are referring to multi symbol backtesting, then yes this is already available.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
21 Oct 2020, 14:21

Hi m.francomano,

We have received the error report and the team is working on a fix.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
21 Oct 2020, 14:12

Hi lohzi97,

This seems to be a bug. I reported this to the product team and will be fixed in a future update. The correct values are the ones printed by the cBot.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
21 Oct 2020, 12:09

Hi duketv,

The answer is in the documentation. This method is a member of the Position class.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
21 Oct 2020, 11:37

Hi duketv,

You should divide by pip size, not multiply. You can also use ModifyStopLossPrice and set the exact price you wish, instead of making calculations.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
21 Oct 2020, 08:27

Hi there,

It seems that for some reason this file was deleted from your system. Can you try a clean installation and let me know if it resolves the problem?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
21 Oct 2020, 08:25

Hi there,

There is nothing special in automating Renko strategies. cBots work the same way as with time based candles.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
21 Oct 2020, 08:19

Hi kieranwaldron,

Any strategy provider that wishes to be contacted can state his/her contact details in their strategy description. If they do not do so, they do not wish to be contacted.

Best Regards,

Panagiotis 

Join us on Telegram 

 


@PanagiotisCharalampous

PanagiotisCharalampous
21 Oct 2020, 08:17

Hi genappsforex,

We cannot provide you with this data since we are not allowed to distribute this information. If you need access to this data, you can subscribe to the services yourself and use their APIs.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
21 Oct 2020, 08:12

Hi charitydv,

The code you posted does not build and you have not posted the indicator either. But the problem should be fixed if you change your indicator initialization to

_fractal = Indicators.GetIndicator<cAlgo.Indicators.Fractals>(_period);

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
21 Oct 2020, 08:06

Hi genappforex,

I am not sure what do yo think the problem is. You have not initialized these parameters, that's why they are NaN. If you initialize them, you will see them

using System;
using cAlgo.API;
using cAlgo.API.Requests;
using cAlgo.API.Internals;

namespace cAlgo
{
    [Robot(AccessRights = AccessRights.None)]
    public class Test : Robot
    {
        Button TestButton;
        StackPanel stackPanel;

        protected override void OnStart()
        {
            Print("Set Button");
            TestButton = new Button();
            TestButton.Margin = 3;
            TestButton.Text = "Test";

            stackPanel = new StackPanel
            {
                Width = 120,
                Left = 10,
                Right = 10,
                Top = 10,
                Bottom = 10,
                Height = 10,
                HorizontalAlignment = HorizontalAlignment.Left
            };

            stackPanel.AddChild(TestButton);
            Chart.AddControl(stackPanel);
            Print("Buttons set:" + stackPanel.Left, stackPanel.Right, stackPanel.Top, stackPanel.Bottom, stackPanel.Width, stackPanel.Height);
        }

        protected override void OnTick()
        {
            Print("Tick:" + stackPanel.Left, stackPanel.Right, stackPanel.Top, stackPanel.Bottom, stackPanel.Width, stackPanel.Height);
            Stop();
        }
    }
}

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
21 Oct 2020, 07:57

Hi notzen,

I have deleted your accounts.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous