Description
Why would you want to be sent a picture showing your chart setup when a position opens or closes?
This product will allow you to capture as many charts on the screen as you want for many different symbols and when a position should open or close it will automatically send the chart picture at the exact time of the event to your Telegram channel in an instant so you can make a judgement call if the position should be left to run or be closed.
Works great with Pending Orders or an Automated Trading System
Why take risks with trading, from the moment a position opens you are at risk, you need as much help as possible to manage it. below is an example picture message sent to a Telegram channel.
Product Page: https://clickalgo.com/ctrader-automated-chart-signals-telegram
Support Page: https://clickalgo.com/ctrader-automated-picture-telegram-support
YouTube Video: https://youtu.be/OphBeWJlclQ
Contact: instant chat group
Website: https://clickalgo.com
Twitter | Facebook | YouTube | Pinterest | LinkedIn
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-automated-chart-signals-telegram
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-automated-chart-signals-telegram");
}
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: 1192
- Modified: 13/10/2021 09:54