Category Trend  Published on 27/02/2021

cTrader Support & Resistance Zone Alerts

Description

This supply and demand graphical indicator shows the major support and resistance levels over the complete chart, it has 3 types of alerts when the price enters a strong or weak supply or demand zone. We also provide a PDF manual on how to trade using this indicator and enough resources are on the product page at clickalgo.com to get you started.

USE THIS INDICATOR WITH THE RISK REWARD TOOL FOR A COMPLETE MANUAL TRADING SOLUTION

The alerts are a pop-up message, an audible,  an email message and an instant telegram message. 

This indicator will dynamically add and remove new support and resistance zones as the price action is happening real-time, so you can just leave it running and receive alerts when the price reaches a strong support or resistance zone. When a zone has been breached it is deemed as no longer a support or resistance level and this zone is automatically removed from the chart.

WATCH A VIDEO DEMONSTRATION

DOWNLOAD THE TRADING ZONES INDICATOR

DOWNLOAD THE RISK/REWARD TRADING TOOL

 

Why not sell your indicators with us and boost your sales?


Contactinstant chat group
Websitehttps://clickalgo.com

ClickAlgo

Twitter | Facebook | YouTube | Pinterest | LinkedIn

 


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

namespace cAlgo
{
    [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
    public class ClickAlgoIndicator : Indicator
    {
        [Parameter(DefaultValue = 0.0)]
        public double Parameter { get; set; }

        [Output("Main")]
        public IndicatorDataSeries Result { get; set; }


        protected override void Initialize()
        {
            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/support-resistance-indicator");
            }
        }

        public override void Calculate(int index)
        {
            // Calculate value at specified index
            // Result[index] = ...
        }

    }
}


ClickAlgo's avatar
ClickAlgo

Joined on 05.02.2015

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: ClickAlgo Indicator.algo
  • Rating: 5
  • Installs: 5801
Comments
Log in to add a comment.
No comments found.