Telegram Alerts for Indicators paid
Description
Telegram Alerts for Indicators works with any data series or indicator values, to inform you of an indicator cross via Telegram, email or on-screen pop-up. Compatible with any data series, such as RSI, MACD and even custom built indicators.
Initially only 10 licenses are being released at: fxtradersystems.com/product/telegram-alerts-for-indicators/
1st: Attach the indicator to an on-chart indicator, and select your preferred settings
2nd: Wait for an on-screen pop-up, email or Telegram
Notification Publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section you may use the Copyright Infringement Notification form to submit a claim.
Formula / Source Code
using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; using cAlgo.Indicators; namespace cAlgo { [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class TelegramAlertsforIndicatorsDisplay : Indicator { [Parameter("Display cTID?", DefaultValue = false)] public bool DisplayID { get; set; } public string msg = "Telegram Alerts for Indicators is not available on cTrader.com \n Visit fxtradersystems.com and search for 'Telegram' to download"; protected override void Initialize() { if (DisplayID) msg += string.Format("\n Your cTID is: {0}", this.Account.UserId.ToString()); Chart.DrawStaticText("Message", msg, VerticalAlignment.Center, HorizontalAlignment.Center, Color.Cyan); } public override void Calculate(int index) { Chart.RemoveObject("Message"); Chart.DrawStaticText("Message", msg, VerticalAlignment.Center, HorizontalAlignment.Center, Color.Cyan); } } }
Comments