Skip to content

AlgoInstanceParameter

Summary

The interface representing an indicator / robot instance parameter. Provides properties that allow for accessing various information about an algo instance parameter.

Signature

1
public abstract interface AlgoInstanceParameter

Namespace

cAlgo.API

Properties

Name

Summary

Gets the name of a parameter.

Signature

1
public abstract string Name {get;}

Return Value

string

DisplayName

Summary

Gets the display name of a parameter (shown in the 'Parameters' section of an instance).

Signature

1
public abstract string DisplayName {get;}

Return Value

string

Value

Summary

Gets the value of a parameter.

Signature

1
public abstract object Value {get; set;}

Return Value

object

Type

Summary

Gets the ALgoParameterType of a parameter.

Signature

1
public abstract AlgoParameterType Type {get;}

Return Value

AlgoParameterType