Ultimate Trend Indicator for cTrader paid
Description
This is a unique type of indicator for cTrader to help identify the trend of a symbol, it allows you to visually see how the trend is forming by using a multi-timeframe Relative Strength Indicator (RSI). This indicator was created by one of our new vendors HerculesOne.
Download by following the links below.
Join our Vendor Program
Do you have some unique indicators or trading tools?
Why not sell them on our marketplace and make a passive income? - How to apply
Contact: instant chat group
Website: https://clickalgo.com
Notification Publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section you may use the Copyright Infringement Notification form to submit a claim.
Formula / Source Code
using cAlgo.API; using System.Windows.Forms; namespace cAlgo { [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)] public class ClickAlgoIndicator : Indicator { [Parameter(DefaultValue = 0.0)] public double Parameter { get; set; } [Output("Main")] public IndicatorDataSeries Result { get; set; } protected override void Initialize() { var ret = MessageBox.Show("Please click YES to open a web browser where you can download this product from ClickAlgo.com", "Downloading...", MessageBoxButtons.YesNo, MessageBoxIcon.Information); if (ret == DialogResult.Yes) { System.Diagnostics.Process.Start("https://clickalgo.com/ultimate-trend"); } } public override void Calculate(int index) { // Calculate value at specified index // Result[index] = ... } } }
Comments