Description
One of the strategies that Constance Brown employed with the Composite Index was to compare the Composite Index against the RSI. When we look for divergences, we look for things like bullish divergence. A bullish divergence occurs when price creates higher-highs, but the oscillator shows lower-highs. When we use the RSI and the Composite Index together, we treat RSI like we would a price chart and the Composite Index is the oscillator.
Download by following the links below.
JOIN OUR VENDOR PROGRAM
Do you have some unique indicators you wish to sell, why not join our vendor program where we will do all the marketing and payment processing while you sit back and make money.
Contact: instant chat group
Website: https://clickalgo.com
using cAlgo.API;
using System.Windows.Forms;
namespace cAlgo
{
[Indicator(IsOverlay = true, 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("It is not possible to download the software from the cTDN website. Would you like to visit us at ClickAlgo.com where you can download it?", "Downloading...", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
if (ret == DialogResult.Yes)
{
System.Diagnostics.Process.Start("https://clickalgo.com/composite-index-rsi");
}
}
public override void Calculate(int index)
{
// Calculate value at specified index
// Result[index] = ...
}
}
}
ClickAlgo
Joined on 05.02.2015
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: ClickAlgo Indicator.algo
- Rating: 0
- Installs: 847
- Modified: 13/10/2021 09:54