cTrader Moving Average Alerts paid

by vegaxlr.developer in category Trend at 13/03/2023
Description

This is a robust cTrader indicator capable of generating multiple types of alerts related to any type of Moving Average, making it useful for forex trading as well as other financial markets. The alerts include Moving Average CrossoverPrice and moving average touch, close touching, or cross (including gaps), Moving Average direction changes, and Proximity Alerts (when the price is approaching or distancing from a moving average). It works with up to two moving averages, but you can add as many instances of this indicator on the chart as you want.

The indicator can be customized to trigger Sound, Pop-Up, Telegram, and Email alerts, and you can enable or disable each type of alert or disable all of them at once. Additionally, there are options to add comments to the moving averages, helping you in your trading decisions, and the alerts will show the Symbol name and the time frame of where the event occurred.

>>>Click here to get the indicator<<<

Use this LIMITED coupon to get a discount: VEGAXLR-ALERTS

 

(This indicator does not show any moving averages on the chart. You have to add them later if you want to see them).

List of Features:

  • Play/Pause option (Stop all alerts at once)
  • Works with any type of Moving Average
  • You can comment each Moving Average
  • Sound alerts
  • Six different sound files to choose from
  • Pop-up alerts
  • Telegram Alerts
  • Email alerts
  • Choose to trigger the alert with Bid or Ask price
  • Price and moving average touch, close touching, or cross alerts (Including Gaps)
  • When the price crosses a moving average, it will tell which direction the last bar that closed is going
  • Moving Average Crossover alerts
  • Moving Average direction change alerts
  • Proximity alerts (Approaching or Distancing a MA) with the option to choose the distance and a timer to stop such alerts

 

In other words, this is a very complete alert indicator and it can be customized to your liking. If it lacks any feature you want, leave a comment down below and I might add it in the next update.

 

>>>Click here to get the indicator<<<

Use this LIMITED coupon to get a discount: VEGAXLR-ALERTS

 

 

Here you can learn how to configure the telegram and the email alerts:

 

Check out my other projects:

Bar Close Alert Manager

cTrader Unlimited Trendline Alerts

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
Language: C#
Trading Platform: cAlgocTrader
// -------------------------------------------------------------------------------------------------
//
//    cTrader Moving Average Alerts.
//    
//    Created by VegaXLR.
//    https://vegaxlr.gumroad.com/
//
// -------------------------------------------------------------------------------------------------

using cAlgo.API;
using System.Windows.Forms;

namespace cAlgo
{
    [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
    public class cTraderMovingAverageAlerts : Indicator
    {
        
        protected override void Initialize()
        {
            var redirect = System.Windows.Forms.MessageBox.Show("Please click YES to open a web browser where you can download this indicator", "Open Web Browser", MessageBoxButtons.YesNo, MessageBoxIcon.Information);

            if (redirect == DialogResult.Yes)
            {
                System.Diagnostics.Process.Start("https://vegaxlr.gumroad.com/l/ctrader-moving-average-alerts");
            }
        }

        public override void Calculate(int index)
        {
            
        }
    }
}
Comments

Exzell - March 13, 2023 @ 23:23

am loving your indicators, i've got all 3 so far,  i've found ways to utilise them in my strategies and so far they're helping a lot - keep producing more

vegaxlr.developer - March 13, 2023 @ 23:27

@Exzell Thank you very much for this comment, I'm happy to know that my indicators are being useful.

5