Category Volatility  Published on 06/01/2022

MTF Bollinger Bands


using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;


namespace cAlgo
{
    [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class MTFBollingerBandssample : Indicator
    {

        protected override void Initialize()
        {

            Chart.DrawStaticText("MTF BollingerBands", "Please download this indicator from https://gum.co/mtfbollingerbands", VerticalAlignment.Top, HorizontalAlignment.Center, Color.AliceBlue);

        }

        public override void Calculate(int index)
        {



        }

    }
}


yomm0401's avatar
yomm0401

Joined on 11.04.2020

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: MTF BollingerBands sample.algo
  • Rating: 0
  • Installs: 1121
Comments
Log in to add a comment.
No comments found.