Category Other  Published on 25/02/2021

cTrader CoT Index Dashboard

Description

The cTrader CoT index and Cot dashboards give you bias by using REAL positionings of the large traders, a leading indicator which is not simply based on price data, it’s based on ACTUAL open interest in the market. Add COT indicator as a leading bias indicator to your technical as a timing tool and you have a professional trading strategy.

Download by following the links below.

 

cTrader CoT Index

 

JOIN OUR VENDOR PROGRAM

Do you have some unique indicators you wish to sell, why not join our vendor program where we will do all the marketing and payment processing while you sit back and make money.

 

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/cot-index-dashboard");
            }
        }

        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: 988
Comments
Log in to add a comment.
No comments found.