Inheritance: Indicator
Example #1
0
 protected override void Init()
 {
     this.name = $"ADXR ({this.length})";
     this.description = "Average Directional Index Rating";
     Clear();
     this.calculate = true;
     Detach();
     this.adx = new ADX(this.input, this.length, this.style);
     Attach();
 }
Example #2
0
 protected override void Init()
 {
     this.name        = $"ADXR ({this.length})";
     this.description = "Average Directional Index Rating";
     Clear();
     this.calculate = true;
     Detach();
     this.adx = new ADX(this.input, this.length, this.style);
     Attach();
 }