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
Contact: instant chat group
Website: https://clickalgo.com
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
Joined on 05.02.2015
- Distribution: Free
- Language: C#
- Trading platform: cTrader Automate
- File name: ClickAlgo Indicator.algo
- Rating: 0
- Installs: 1904
- Modified: 13/10/2021 09:54
Note that publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section, please use the Copyright Infringement Notification form to submit a claim.
Comments
Log in to add a comment.
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...
I am really sorry, the link was incorrect, it has been fixed now.