category Volatility  at 06/01/2022

Daily Volatility Average


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 DailyVolatilityAverageSample : Indicator
    {

        protected override void Initialize()
        {

            Chart.DrawStaticText("Daily Volatility Average", "Please download this indicator from above link", VerticalAlignment.Top, HorizontalAlignment.Center, Color.AliceBlue);

        }

        public override void Calculate(int index)
        {



        }

    }
}


yomm0401's avatar
Yo Nam

Joined 11.04.2020

  • Type: free
  • Language: C#
  • Trading Platform: cTrader Automate
  • Filename: Daily Volatility Average Sample.algo
  • Rating: 0
  • Downloads: 1622
Comments
Only logged in users can post a comment
matfx's avatar
Muhammad Syamil Abdullah · 7 months ago

Can you help to code signal bar indicator? An indicator with MTF feature signal from MA, RSI Stochastic and MACD. The indicator also display bid price, spread, daily average hi to low range.