Description
The cTrader Trading Dashboard is an embedded trading tool developed by one of our vendors (AlgoCorner), it uses the latest cTrader API versions, we are taking advantage of its capabilities to develop a fast and reliable tool to place trades with a single click in many symbols running in real-time.
- Download this Trading Tool
- Watch a Video Explainer
- Sell Your Products With Us
- Join our instant chat group on Telegram.
Smart Order Placement
You will be able to place customized market orders and pending orders with a single click, in any symbol that your broker provides. Depending on the order distance parameter, it is converted automatically to either pending, market or stop order.
The Palette offers custom Dark and Light theme, but if needed, there’s a custom theme that you can use to change the colours.
Why Use This Product?
- You have all the buttons that you need to trade in a single space.
- If you use multiple screens, it can be placed on a detached chart.
- Customize it to your liking so you don't spend time setting up a trade multiple times.
- Save the layout settings automatically so you can restart where you left it previously.
- Check the prices and spread in real-time before placing a trade.
- Download this Trading Tool
Contact: instant chat group
Website: https://clickalgo.com
Twitter | Facebook | YouTube | Pinterest | LinkedIn
using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;
using System.Windows.Forms;
using System.Threading;
// To download the software please visit: https://clickalgo.com/ctrader-trading-dashboard
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/ctrader-trading-dashboard");
}
dialogIsShownOnce = true;
dialogMutex.ReleaseMutex();
}
}
}
ClickAlgo
Joined on 05.02.2015
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: ClickAlgo Software.algo
- Rating: 0
- Installs: 924
- Modified: 13/10/2021 09:54