Warning! This section will be deprecated on February 1st 2025. Please move all your Indicators to the cTrader Store catalogue.
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;
}
}
}
whis.gg
Joined on 31.08.2015
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: [PT] Divergence Spotter.algo
- Rating: 5
- Installs: 7485
- Modified: 13/10/2021 09:55
Note that publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section, please use the Copyright Infringement Notification form to submit a claim.
Hey, I'm interested in buying this indicator. your poshtrader link doesn't work.