Category Trend  Published on 13/03/2021

MD Indicator

Description

This is a Trend indicator for cTrader.

It is based on MovingAverages.

 

Trading example

 

If you have any questions or problems, please feel free to contact us in the comments!!!

 

Notice:It does not guarantee any particular outcome or profit of any kind. Please enjoy trading at your own risk.

 

© 2020, Taro Yamada, taro.yamada.forex@gmail.com

 

We can also take orders for algorithm development.

Please feel free to contact us.

 

Download from here 

 


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 MDLink : Indicator
    {
        protected override void Initialize()
        {
            ChartObjects.DrawText("MDLink", "Download for FREE: https://gum.co/Ktudn", StaticPosition.Center, Colors.Red);
        }

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


AK
akamanbow3

Joined on 17.09.2020

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: MDLink.algo
  • Rating: 0
  • Installs: 1110
Comments
Log in to add a comment.
No comments found.