Category Oscilators  Published on 13/03/2021

Perfect MACD

Description

This is a MACD oscillator for cTrader with many effective features.

Various MovingAverages can be used for MACD and signal calculations, and the program can be freely switched to sensitive mode.

Furthermore, it is easy to visually capture the movement of the MACD Histogram through color changes.

 

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.

 

 

Download from here 

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

 

We can also take orders for algorithm development.

Please feel free to contact us.


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 PerfectMACDLink : Indicator
    {
        protected override void Initialize()
        {
            ChartObjects.DrawText("PerfectMACDLink", "Please download Lite edition or Complete edition from here: https://gum.co/BPxMXo", 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: Perfect MACD Link.algo
  • Rating: 0
  • Installs: 2268
Comments
Log in to add a comment.
No comments found.