Description
This cBot allows you to annotate your charts with boxes, trend lines and key levels (horizontal lines), each with their own individual comments – so that when the price touches one you get notified right away via Telegram.
Initially only 5 licenses are being released at: fxtradersystems.com/product/tl-kl-box-telegram-alerts/
1st: Activate the cBot
2nd: Draw and comment your setup
3rd: Let it run, and get notified when price touches the trend line, key level or box
using System;
using System.Linq;
using cAlgo.API;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
using cAlgo.Indicators;
namespace cAlgo.Robots
{
[Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
public class GetUserID : Robot
{
[Parameter("Display cTID?", DefaultValue = false)]
public bool DisplayID { get; set; }
protected override void OnStart()
{
string msg = "Trend Line, KL and Box Telegram Alerts is not available on cTrader.com \n Visit fxtradersystems.com and search for 'Telegram' to download";
Print(msg);
Chart.DrawStaticText("Message", msg, VerticalAlignment.Center, HorizontalAlignment.Center, Color.Cyan);
if (DisplayID)
{
Print("UserID: " + this.Account.UserId.ToString());
Chart.DrawStaticText("UserID", "\n\n\nUserID: " + this.Account.UserId.ToString(), VerticalAlignment.Center, HorizontalAlignment.Center, Color.Cyan);
}
}
}
}
fxtradersystems
Joined on 10.09.2020
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: Trend Line, KL and Box Display.algo
- Rating: 0
- Installs: 736
- Modified: 13/10/2021 09:54
Warning! Running cBots downloaded from this section may lead to financial losses. Use them at your own risk.
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.
No comments found.