Category Volatility  Published on 02/12/2019

Mega Channel

Description

Signup & Download FREE : https://ctrader.guru/product/mega-channel/


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

namespace cAlgo
{
    [Indicator(IsOverlay = true, AccessRights = AccessRights.FullAccess)]
    public class MegaChannelDemo : Indicator
    {

        protected override void Initialize()
        {

            Message();

        }

        public static void Message()
        {

            string toDownload = "https://ctrader.guru/product/mega-channel/";

            var answer = MessageBox.Show(string.Format("To download Mega Channel, please visit {0}", toDownload), "ctrader.guru", MessageBoxButtons.YesNo, MessageBoxIcon.Information);

            if (answer == DialogResult.Yes)
                System.Diagnostics.Process.Start(toDownload);

        }

        public override void Calculate(int index)
        {

        }

    }

}


ctrader.guru's avatar
ctrader.guru

Joined on 19.07.2018

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: Mega Channel Demo.algo
  • Rating: 0
  • Installs: 1192
Comments
Log in to add a comment.
No comments found.