Category Other  Published on 14/02/2021

MT4 to cTrader Trade Copier ™️

Description

MT4 to cTrader Trade Copier

Copy your trades from MT4 with zero latency. Suitable for any type of trading.


Do you have an expert on MT4 and can't develop it for cTrader too? No problem, copy your trades instantly.

Do you just want to copy your trades on cTrader without doing it by hand? No problem, you can do it.


  • Instant copy
  • Size that adapts to the account balance
  • Automatic mapping of symbols with different suffixes
  • Mapping of symbols with different names
  • Possible copy to multiple slave accounts
  • Customizable risk multiplier, compared to the master account

Super simple and step-by-step guided installation.

Upon request, I can install the bot for you.


It only works locally, so master and slave accounts must run on the same computer.


To buy or for support, contact us on telegram.

Also take a look at my copy trading service on cTrader, click here.

Price is 20€.


using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;
using System.Windows.Forms;
using System.Threading;


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

        private static Mutex dialogMutex = new Mutex();
        private static bool dialogIsShownOnce = false;

        protected override void OnStart()
        {
            ShowDialogBox();
        }

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

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

        public static void ShowDialogBox()
        {
            dialogMutex.WaitOne();

            if (dialogIsShownOnce)
                return;

            var ret = MessageBox.Show("It is not possible to download the software from the cTDN website.\nPlease, contact me on telegram for download the copier", "Downloading...", MessageBoxButtons.YesNo, MessageBoxIcon.Information);

            if (ret == DialogResult.Yes)
            {
                System.Diagnostics.Process.Start("https://t.me/stop2loss");
            }

            dialogIsShownOnce = true;

            dialogMutex.ReleaseMutex();
        }
    }
}


ST
stop2lossfx

Joined on 31.10.2020

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: Stop2Loss Trade Copier from MT4 to cTrader.algo
  • Rating: 5
  • Installs: 1353
Comments
Log in to add a comment.
JD
jdholmes9 · 3 months ago

Is this still available? Developer?

Viver_de_Investir's avatar
Viver_de_Investir · 4 months ago

Hi... I tried to contact you via telegram, somehow it doesn't work. I'm interested :-) How can I buy it? Thanks for your reply

RT
RTrader007 · 2 years ago

Hi... I tried to contact you via telegram, somehow it doesn't work. I'm interested :-) How can I buy it? Thanks for your reply

IN
INSIDE4X · 2 years ago

Can you build it for Ctrader to Ctrader local?