Category Trend  Published on 13/06/2021

AlgoBotForex 460% per year version 2.3

Description

Congratulations to those who have been using our bot. April was a good month for our Forex trading bot, AlgoBotForex (ABF). Take a look at our profits of April down below.

Interested? Check out our new promo video!

Does this sound too good to be true? We are convinced that ABF bot will perform outstandingly.  That’s why we offer you a demo of our product. Are you interested?

Request a demo version at https://www.algobotforex.com


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.Robots
{
    [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
    public class cBot : Robot
    {
        private static Mutex mutex = new Mutex();

        protected override void OnStart()
        {
            DialogBox();

        }



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

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

        public static void DialogBox()
        {
            try
            {

                mutex.WaitOne();


                var startDialog = MessageBox.Show("Want to try out AlgoBotForex?", "AlgoBotForex", MessageBoxButtons.YesNo, MessageBoxIcon.Information);

                if (startDialog == DialogResult.Yes)
                {
                    System.Diagnostics.Process.Start("https://www.Algobotforex.com");
                }

            } finally
            {
                mutex.ReleaseMutex();
            }


        }
    }
}


AlgoBotForex's avatar
AlgoBotForex

Joined on 26.03.2021

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: AlgoBotForex.algo
  • Rating: 0
  • Installs: 801
Comments
Log in to add a comment.
No comments found.