Category Other  Published on 29/07/2024

Indicator Test

Description

test v2


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

namespace cAlgo
{
    [Indicator(AccessRights = AccessRights.None)]
    public class Indicatorversion2 : Indicator
    {
        protected override void Initialize()
        {
            // VERSION 2
        }

        public override void Calculate(int index)
        {
            // Calculate value at specified index
            // Result[index] = 
        }
    }
}

rarkhipov's avatar
rarkhipov

Joined on 14.02.2022

  • Distribution: Free
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: Indicator.algo
  • Rating: 0
  • Installs: 181
  • Modified: 29/07/2024 14:31
Comments
Log in to add a comment.
No comments found.