Description
This is a much-improved version of an existing indicator which is pretty accurate at capturing changes in the direction of the trend with a visual display on the chart together with trade signals.
How To Find Out The Change In The Trend
When the trend changes direction you will see the dots change colour, in the example image below green is for a bullish trend and red for a bearish trend, the adjustable parameter called "Confirmation dots" will allow you to wait a number of same colour dots before showing a signal or sending an alert. An example would be to set it to 4 dots, so when 4 green dots are formed a solid direction reversal has taken place.
Please note that the indicator will not signal a bullish trend if the price is below the dot when the candle closes and above the dot for a bearish signal.
VISIT OUR WEBSITE TO FIND OUT MORE AND DOWNLOAD
What Kind of Alerts Are There?
The alerts are a pop-up message on the screen, an audible sound which you can configure yourself, an email message and a free instant telegram message.
Install the Telegram App on your mobile phone and receive free instant messages, you no longer need to pay using an SMS service.
Click Here For Help On How To Set Up Your Telegram Service
Reviews From People Using The Telegram Service
VISIT OUR WEBSITE TO FIND OUT MORE AND DOWNLOAD
Paul Hayes
Sales & Marketing
Email: contact@clickalgo.com
Phone: (44) 203 289 6573
Website: https://clickalgo.com
Twitter | Facebook | YouTube | Pinterest | LinkedIn
PS: Why not join our instant chat group on Telegram.
using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;
using System.Windows.Forms;
using System.Threading;
// To download the software please visit: https://clickalgo.com/ctrader-trend-surfing-indicator-alerts
namespace cAlgo
{
[Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
public class ClickAlgoSoftware : Robot
{
[Parameter(DefaultValue = 0.0)]
public double Parameter { get; set; }
private static Mutex dialogMutex = new Mutex();
private static bool dialogIsShownOnce = false;
protected override void OnStart()
{
ShowDialogBox();
}
protected override void OnTick()
{
// Put your core logic here
}
protected override void OnStop()
{
// Put your deinitialization logic here
}
public static void ShowDialogBox()
{
dialogMutex.WaitOne();
if (dialogIsShownOnce)
return;
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/ctrader-trend-surfing-indicator-alerts");
}
dialogIsShownOnce = true;
dialogMutex.ReleaseMutex();
}
}
}
ClickAlgo
Joined on 05.02.2015
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: ClickAlgo Software.algo
- Rating: 0
- Installs: 2323
- Modified: 13/10/2021 09:54