Category Oscilators  Published on 23/02/2023

Multi Time Frame (MTF) Bollinger Band

Description

This Indicator can show higher time frame Bollinger Band indicator. For example you can see M15 Bollinger Band indicator in M1 chart

Please send a pm for license indicator.

Email: nh.zadeh@gmail.com

 

M15 Bollinger Band on M1 Chart   ↑↑↑↑↑↑

D1 Bollinger Band on H2 Chart   ↑↑↑↑↑↑

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using cAlgo.API;
using cAlgo.API.Collections;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;

namespace cAlgo
{
    [Indicator(AccessRights = AccessRights.None)]
    public class MTFBollingerBand : Indicator
    {
        [Parameter(DefaultValue = "Hello world!")]
        public string Message { get; set; }

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

        protected override void Initialize()
        {
            Print("Please contact via email:  nh.zadeh@gmail.com");
        }

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

 


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using cAlgo.API;
using cAlgo.API.Collections;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;

namespace cAlgo
{
    [Indicator(AccessRights = AccessRights.None)]
    public class MTFBollingerBand : Indicator
    {
        [Parameter(DefaultValue = "Hello world!")]
        public string Message { get; set; }

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

        protected override void Initialize()
        {
            Print("Please contact via email:  nh.zadeh@gmail.com");
        }

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

nh.zadeh's avatar
nh.zadeh

Joined on 11.03.2018

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