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
Note that publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section, please use the Copyright Infringement Notification form to submit a claim.
Comments
Log in to add a comment.
Thanks for sharing it! But I do not understand why?