Category Trend  Published on 25/02/2021

Bollinger Bands %B for cTrader

Description

This Free cTrader Bollinger Bands Percent B indicator is very good at identifying trend reversals in a trending market, it also benefits from integrated Telegram and email alerts so that when a signal event has fired an email or Telegram message is sent to your mobile phone or PC.

USE THIS BUTTON TO DOWNLOAD

 

cTrader Bollinger Bands Expert

 

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 Result = MessageBox.Show("To download the indicator, you need to visit our website.\nDo you wish to continue?", "Download Indicator", MessageBoxButtons.YesNo);

            if (Result == DialogResult.Yes)
                System.Diagnostics.Process.Start("https://clickalgo.com/bollinger-percent-b");
        }

        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: 1732
Comments
Log in to add a comment.
ClickAlgo's avatar
ClickAlgo · 3 years ago

I am really sorry, the link was incorrect, it has been fixed now.

ctid2514471's avatar
ctid2514471 · 3 years ago

Would help if the link to "Download this indicator" wasn't broken.

Or was that some sort of intelligence test I had to pass before downloading...