Category Other  Published on 02/04/2024

Copy cTrader / MT4 / MT5

Description

Finally, there is now a truly 100% free system for copying trades.

 



using cAlgo.API;

namespace cAlgo.Robots
{
    [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
    public class CopiixLite : Robot
    {

        protected override void OnStart()
        {

            // --> RealTime support https://t.me/Copiix
            
            string download = "https://copiix.com/last/release/";
            string message = string.Format("Download last versione here : {0}", download);

            Print(message);
            
            if (MessageBox.Show("Download Copiix?", "Download", MessageBoxButton.YesNo, MessageBoxImage.Question) == MessageBoxResult.Yes)
            {

                System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo
                {
                    FileName = download,
                    UseShellExecute = true
                });

            }
                
                
            Stop();

        }

        protected override void OnTick()
        {



        }

        protected override void OnStop()
        {


        }

    }

}


ctrader.guru's avatar
ctrader.guru

Joined on 19.07.2018

  • Distribution: Free
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: Copiix Lite.algo
  • Rating: 0
  • Installs: 314
Comments
Log in to add a comment.
No comments found.