Category Trend  Published on 27/02/2021

cTrader Harmonic Pattern Indicator

Description

The cTrader Harmonic Pattern Auto- Detection Indicator is a powerful technical analysis and pattern recognition tool for retail traders. Harmonics is the process of identifying the market's rhythm or its pulse, and then exploiting its trading opportunities. They provide us with visual occurrences that have tendencies to repeat themselves over and over again.

How To Download

You can download the harmonic indicator from our website.

 

cTrader Advanced Trading Techniques - Harmonics

 

Contactinstant chat group
Websitehttps://clickalgo.com

ClickAlgo

Twitter | Facebook | YouTube | Pinterest | LinkedIn

 


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

namespace cAlgo
{
    [Indicator(IsOverlay = true, 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("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/harmonic-indicator");
            }
        }

        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: 2574
Comments
Log in to add a comment.
MS
msnayl · 4 years ago

hello.

can I trade on demo v 3.6 and teh trades will be copied on my blockers version 3.5 ?

 

is copy trading applicable in C-trader ?