Category Oscilators  Published on 13/03/2021

Simphony Oscillator

Description

This is an oscillator indicator for cTrader.

A complex mathematical method is used to analyze price changes.

 

 

Download from here

 

 

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.


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 SimphonyLink : Indicator
    {
        protected override void Initialize()
        {
            ChartObjects.DrawText("SimphonyLink", "Download for FREE: https://gum.co/xjeQd", 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: SImphonyLink.algo
  • Rating: 0
  • Installs: 1171
Comments
Log in to add a comment.
No comments found.