Category Trend  Published on 27/02/2021

cTrader Hurst Cycle Indicator

Description

This is one of a few indicators that JM Hurts created in the 1970s based on a theory of market cycles, he describes the movement of the financial markets like the combination of an endless number of cycles with an allowance for some randomness and fundamental interaction.

 

How to Trade using the Hurst Cycle Indicator

We have included two PDF documents with the download to help you understand and trade with Hurst cycles, you can also read more about J.M Hurst's Cyclic Theory.

  • Hurst White Paper.pdf
  • Core Concepts of Hurst Cycles.pdf

 

cTrader Hurst Market Cycle Indicator

.

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/hurst-cycle-indicator");
            }
        }

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

    }
}


ClickAlgo's avatar
ClickAlgo

Joined on 05.02.2015

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