Description
ADX Signed calculates direction movement values using the standard method but excludes the operation of taking the module of values. It preserves common signs of ADX values, which makes it more compatible, easy to use, and gives signals quicker than conventional ADX.
Also, the indicator provides an additional line calculated as a difference between the DI+ and DI- component. This line can identify overbought/oversold areas, and together with divergence pattern, it makes a strong reversal signal.
You might also be interested in:
[PoshTrader] Divergence Spotter
/* -------------------------------------------------------------------------------
*
* [PoshTrader] ADX Signed
*
* Copyright (C) 2020, PoshTrader Ltd (https://poshtrader.com)
* PoshTrader reserves the right to modify or overwrite this algo with each release.
*
* https://poshtrader.com/items/ctrader/4836/
*
* -------------------------------------------------------------------------------
*/
using cAlgo.API;
using PoshTrader.Licensing;
namespace cAlgo
{
[Item(4836, "ADX Signed", Author = "PoshTrader")]
[Indicator(IsOverlay = true, AccessRights = AccessRights.FullAccess)]
public class SymbolWatermark : Indicator
{
protected override void Initialize()
{
new ItemLicense(this);
}
public override void Calculate(int index) { }
}
}
Jiri
Joined on 31.08.2015
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: [PoshTrader] ADX Signed.algo
- Rating: 5
- Installs: 7389
- 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.
Comments
Log in to add a comment.
not free !