RegisterIndicator Constructor

Creates an instance of the RegisterIndicator class.

 public RegisterIndicator(
                string Name,
                List IndicatorParameters
                ); 

Parameters

Name string

Name of indicator. Can inculde path if in subfolder.

IndicatorParameters IndicatorInput

IndicatorParameters is collection of indicator input values.

Example

  var Parameters = new List<IndicatorInput>(); 
  Parameters.Add(new IndicatorInput("Input Name", 2)); 
  var reg= new RegisterIndicator("Indicator Name", Parameters);