Category Other  Published on 21/10/2021

Direction Correction Target Indicator

Description

The cTrader Direction Correction Target (DCT) is not just an indicator, this is a whole trading strategy system by itself which will also send Telegram signals directly to your mobile phone when there are signals to enter a trade. This product was created by one of our new vendors and we highly recommend that you download and try it out.

If you want to be shown where to enter, exit and take profit then this tool is for you.

Download by following the links below.

 

cTrader take profit targets

 

Join our Vendor Program

Why not sell your indicators on our marketplace and make a passive income? - How to apply

Contactinstant chat group
Websitehttps://clickalgo.com

ClickAlgo

Twitter | Facebook | YouTube | Pinterest | LinkedIn


using cAlgo.API;
using System.Windows.Forms;

namespace cAlgo
{
    [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
    public class ClickAlgoIndicator : Indicator
    {
        [Parameter(DefaultValue = 0.0)]
        public double Parameter { get; set; }

        [Output("Main")]
        public IndicatorDataSeries Result { get; set; }


        protected override void Initialize()
        {
            var ret = MessageBox.Show("Please click YES to open a web browser where you can download this product from ClickAlgo.com", "Downloading...", MessageBoxButtons.YesNo, MessageBoxIcon.Information);

            if (ret == DialogResult.Yes)
            {
                System.Diagnostics.Process.Start("https://clickalgo.com/direction-correction-target");
            }
        }

        public override void Calculate(int index)
        {
            // Calculate value at specified index
            // Result[index] = ...
        }
    }
}


ClickAlgo's avatar
ClickAlgo

Joined on 05.02.2015

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