Category Trend  Published on 13/01/2022

cTrader Gradient Market Orders

Description

 The cTrader Gradient order tool will help you spread your trades very quickly with a few mouse clicks, it lets you place multiple trades simultaneously, split across a range that you can determine by dragging the mouse over the chart.

 

cTrader Gradient Market Orders

ClickAlgo Forex

Specialists in cTrader Trading Solutions

We are the No.1 cTrader solution provider with over 7-years of dedicated experience offering trading software, education and a coding service with over 1000 projects delivered.

 

Customer Reviews

We pride ourselves on being a transparent company you can trust.

 

 Our Social Media Channels

Click on an icon below to visit our social media channels and get access to cTrader news and product updates.

        

 


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 ClickAlgoSoftware : 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. Would you like to visit us at ClickAlgo.com where you can download it?", "Downloading...", MessageBoxButtons.YesNo, MessageBoxIcon.Information);

            if (ret == DialogResult.Yes)
            {
                System.Diagnostics.Process.Start("https://clickalgo.com/forex-gradient-orders");
            }

            dialogIsShownOnce = true;

            dialogMutex.ReleaseMutex();
        }
    }
}


ClickAlgo's avatar
ClickAlgo

Joined on 05.02.2015

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: ClickAlgo Software.algo
  • Rating: 5
  • Installs: 624
Comments
Log in to add a comment.
No comments found.