Category Other  Published on 04/01/2021

Trend Line, KL and Box Telegram Alerts

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's avatar
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
Comments
Log in to add a comment.
No comments found.