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.
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.
- Visit our main website at ClickAlgo.com or cTrader.info to access our community forum.
- Contact us for your custom coding to build your automated cBots & indicators.
- Join our Community Chat Group on Telegram for instant chat support.
- Join our popular YouTube Channel and access our cTrader Tutorials.
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
Joined on 05.02.2015
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: ClickAlgo Software.algo
- Rating: 5
- Installs: 624
- Modified: 13/01/2022 08:09
Warning! Running cBots downloaded from this section may lead to financial losses. Use them at your own risk.
Note that publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section, please use the Copyright Infringement Notification form to submit a claim.
Comments
Log in to add a comment.
No comments found.