Category Other  Published on 06/01/2022

Entry Plan


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 EntryPlansample : Indicator
    {
        protected override void Initialize()
        {
        }
        public override void Calculate(int index)
        {
            Chart.DrawText("Please download above link", "", index, 100, Color.Black);
        }


    }
}


yomm0401's avatar
yomm0401

Joined on 11.04.2020

  • Distribution: Free
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: Entry Plan sample.algo
  • Rating: 0
  • Installs: 1630
Comments
Log in to add a comment.
No comments found.