Category Trend  Published on 02/12/2019

Pivot-GURU (Daily-Weekly-Monthly Pivots)

Description
using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;
 
namespace cAlgo
{
    [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AutoRescale = false, AccessRights = AccessRights.None)]
    public class AlgoGURUIndicator : Indicator
    {
 
        protected override void Initialize()
        {
            string msg = "www.algoguru.hu where the custom indicators and cBots are made.";
 
            ChartObjects.DrawText("botcomment", msg, StaticPosition.TopLeft, Colors.Red);
        }
        public override void Calculate(int index)
        {
        }
    }
 
}

 



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

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

        protected override void Initialize()
        {
            string msg = "www.algoguru.hu where the custom indicators and cBots are made.";

            ChartObjects.DrawText("botcomment", msg, StaticPosition.TopLeft, Colors.Red);
        }
        public override void Calculate(int index)
        {
        }
    }

}


NE
negocios333

Joined on 25.04.2019

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: AlgoGURUIndicator.algo
  • Rating: 0
  • Installs: 1187
  • Modified: 13/10/2021 09:54
Comments
Log in to add a comment.
AlgoGuru's avatar
AlgoGuru · 5 years ago

Thanks for sharing it! But I do not understand why?