Category Other  Published on 02/03/2021

Divergence

Description

This is a generic divergence indicator for cTrader that allows you to see divergence between two data series on a cTrader chart, the data series can be from an indicator or price chart.

If you have any question or issue with our product please contact us via our site live chat or if we were offline leave a message, if you post a comment here we will not get any notification and we will not be able to help you.

The uploaded file here doesn't contain anything, its a commercial product and you must use our company website to download it.

Link (With 14 day free trial): 

 


using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;

namespace cAlgo
{
    [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class Blank : Indicator
    {
        protected override void Initialize()
        {
            ChartObjects.DrawText("AlgoDeveloper", "Please download this indicator from AlgoDeveloper.com", StaticPosition.Center, Colors.Red);
        }

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


afhacker's avatar
afhacker

Joined on 15.10.2015

  • Distribution: Free
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: Blank.algo
  • Rating: 0
  • Installs: 2741
  • Modified: 13/10/2021 09:54
Comments
Log in to add a comment.
JO
johncker · 2 years ago

Por que não posta essa bosta com paga logo de uma vez pra nem aparecer aqui na busca de indicadores grátis?

PanagiotisCharalampous's avatar
PanagiotisCharalampous · 3 years ago

Good job Ahmad!