Category Other  Published on 26/02/2021

cTrader QuickFx Trading Terminal

Description

Why not experience trading at an advanced level on one of the world's most popular trading platforms (cTrader), while taking advantage of ClickAlgo's trader-centric solutions. The mini-trading terminal will allow you to trade with ease as well as submit complex order types. The mini-trading terminal will allow you to trade with ease as well as submit complex order types.

 

CLICK HERE TO DOWNLOAD THE APPLICATION

WATCH A DEMONSTRATION VIDEO

cTrader QuickFx Terminal Free Trial

Visit Product Page to Download Trial or Buy

Please note that only the trial version is available at the moment, you can pre-order for the final version which should be ready early February.

Download the PDF User Manual

DOWNLOAD THIS TOOL

DOWNLOAD THIS TOOL

 

Contactinstant chat group
Websitehttps://clickalgo.com

ClickAlgo

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: http://clickalgo.com/ctrader-quickfx-trading-terminal

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.\nWould 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("http://clickalgo.com/ctrader-quickfx-trading-terminal");
            }

            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: 0
  • Installs: 2381
  • Modified: 13/10/2021 09:54
Comments
Log in to add a comment.
ClickAlgo's avatar
ClickAlgo · 7 years ago

Hi Omega,

My appologies for mis-reading your message, the product you are probably looking for is below.

https://clickalgo.com/ctrader-one-click-trading-terminal-software

ClickAlgo's avatar
ClickAlgo · 7 years ago

Hi Omega,

I have a new automated strategy that is ready to be published on the website in a few days that trades only DAX Germany30, it is giving a an anual return of 30$ with a 3.5% drawdown, would you be interested in a trial, if so drop me an email at sales@clickalgo.com

Paul.

OM
Omega · 7 years ago

Hi there,

 

I use ctrader as my platform of choice through pepperstone to trade the GER30.

I'm looking for an option to preset my market orders so that when I place a trade the platform will set my trade to break even plus a few points when price goes my way.

Am I able to use the break even algo in calgo for this and or do you have some software that does this only?

Thanks

A

ClickAlgo's avatar
ClickAlgo · 7 years ago

New feature added 12/07/2017

Ability to select the % amount of volume for a partial close on an open position