FastQuant.Indicators.ADX.Init C# (CSharp) Method

Init() protected method

protected Init ( ) : void
return void
        protected override void Init()
        {
            this.name = $"ADX ({this.length})";
            this.description = "Average Directional Index";
            Clear();
            this.calculate = true;
            Detach();
            this.dx = new DX(this.input, this.length, this.style);
            Attach();
        }