PanagiotisCharalampous's avatar
PanagiotisCharalampous
26 follower(s) 0 following 1006 subscription(s)
Replies

PanagiotisCharalampous
05 Jan 2021, 16:50

Hi Pawel,

There are many reasons that could lead to orders not to be copied between accounts. To investigate further we need the following

  1. The strategy name.
  2. The follower's account and broker
  3. The deal IDs which have not been copied.

Best Regards,

Panagiotis 

Join us on Telegram 

 

 


@PanagiotisCharalampous

PanagiotisCharalampous
05 Jan 2021, 09:44

Hi patrock333,

If you run multiple instances of the cBot, then you will have multiple local instances of the moving averages. The best and simplest approach would be to incorporate all the logic in a single cBot so that you initialize the shared information only once.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 10:41

Hi firemyst,

Happy new year!

Here you go

[Parameter("Fast Source", Group = "Fast MA", DefaultValue = "High")]

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 10:04 ( Updated at: 21 Dec 2023, 09:22 )

Hi davidgough,

Of course there is

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 10:02

Hi patrock333,

Which data series are you referring to? If you can share some come then it would be easier to understand what do you mean. If the data series you are referring to are local to each cBot instance, then yes you will have multiple copies of it.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 09:59

Hi Takis,

It is a known issue and will be fixed in an upcoming release.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 09:55

Hi imrealfighter,

There is no built-in method for this, you will need to write your own.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 09:48

Hi dvadiasor,

Our team is looking into this issue.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 09:45

Hi EagleMoxy,

Yes they are Lots. You can check the size of the Lot in your Symbol Info

Best Regards,

Panagiotis 

Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 09:42

Hi EagleMoxy,

Price feeds are a responsibility of the broker. Please talk to your broker.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 09:40

Hi notzen,

Please send us an email at community@spotware.com using your cTrader ID email address and we will delete them for you.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 09:28

Hi EagleMoxy,

You can find the pip decimal place in the Symbol Info window.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 09:25

Hi EagleMoxy,

I could not reproduce this on Chrome, works fine for me. Could you record a short video demonstrating this behavior?

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 09:20

Hi EagleMoxy,

No it doesn't. You obfuscate dll files that can can be decompiled, just to make the life of the perpetrator a bit harder. There is no point to obfuscate encrypted files.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 09:04

Hi all,

It is in the backlog for an upcoming update.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 09:03

Hi MarianiMatteo,

cTrader Copy accounts belong to the broker. So they are obliged to provide you a statement, if you request one.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 08:58

Hi tommy123,

You will need to use a third party service like Trade Copier or cMAM to achieve this.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 08:49

Hi ggsayers,

There is no built-in feature for this.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 08:46

Hi there,

Here is a correct example

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("Sell Point Colour", DefaultValue = enmABC.Yellow, Group = "Colour Settings")]

        public enmABC SellPC { get; set; }
        public enum enmABC
        {
            Blue,
            Yellow,
            Orange
        }

        protected override void OnStart()
        {
            string colour = SellPC.ToString();
            Chart.DrawHorizontalLine("spoint", Symbol.Ask, Color.FromName(colour), 2, LineStyle.Solid);
        }

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

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

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
04 Jan 2021, 08:40

Hi vinayraj.pillai,

Can you check again? It should be fine now.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous