Category Oscilators  Published on 22/06/2020

[PoshTrader] Divergence Spotter

Description

Divergence Spotter finds and scans for regular and hidden divergences automatically using any attached oscillator.

To offer a broad market perspective, the indicator can be loaded many times in the same chart using different oscillators, without interference

 

https://poshtrader.com/items/ctrader/3442/


 


/* -------------------------------------------------------------------------------
 *
 *      [PoshTrader] Divergence Spotter
 *
 *      Author: Jiri Beloch <jiri@poshtrader.com>
 *      Developer: PoshTrader Ltd <info@poshtrader.com>
 *
 *      https://poshtrader.com/items/ctrader/3442/
 *
 * -------------------------------------------------------------------------------
 */

using System;
using System.Collections.Generic;
using cAlgo.API;
using cAlgo.API.Internals;
using PoshTrader.Author;

namespace cAlgo
{
    [Item(3442, Name = "Divergence Spotter")]
    [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
    public class DivergenceSpotter : Indicator
    {
        private Licensing _licensing;

        protected override void Initialize()
        {
            _licensing = new Licensing(this, Account.UserId.ToString());
            _licensing.Activate();
        }

        public override void Calculate(int index)
        {
            if (_licensing.Item.License.Status != LicenseStatus.Valid)
                return;
        }
    }
}

Jiri's avatar
Jiri

Joined on 31.08.2015

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: [PT] Divergence Spotter.algo
  • Rating: 5
  • Installs: 7485
Comments
Log in to add a comment.
No comments found.