Category Other  Published on 18/06/2019

Symbol Info

Description

Shows some important statistics about the symbol on a corner of your chart. 

Free Download: https://www.algodeveloper.com/product/symbol-info/

If you have any question or issue with our product please contact us via our site live chat or if we were offline leave a message, if you post a comment here we will not get any notification and we will not be able to help you.


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

namespace cAlgo.Indicators
{
    [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class Blank : Indicator
    {
        protected override void Initialize()
        {
            ChartObjects.DrawText("AlgoDeveloper", "Please download this indicator from AlgoDeveloper.com", StaticPosition.Center, Colors.Red);
        }

        public override void Calculate(int index)
        {
        }
    }
}


afhacker's avatar
afhacker

Joined on 15.10.2015

  • Distribution: Free
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: Blank.algo
  • Rating: 0
  • Installs: 4471
Comments
Log in to add a comment.
matfx's avatar
matfx · 7 years ago

Best and useful indicator, especially for manual traders. Thanks for sharing.

SO
socalfxtrader · 7 years ago

very useful indicator. just what i was looking for.

i appreciate the work you put into it.

thanks,

ds