Skip to content

ChartIndicator

Summary

The interface representing an indicator attached to a chart.Provides properties that allow for accessing various information about an indicator.

Signature

1
public abstract interface ChartIndicator

Namespace

cAlgo.API

Properties

Name

Summary

Gets the name of an indicator.

Signature

1
public abstract string Name {get;}

Return Value

string

InstanceId

Summary

Gets the ID of a specific indicator instance.

Signature

1
public abstract string InstanceId {get;}

Return Value

string

PanelIndex

Summary

Gets or sets the index of the panel on which an indicator is displayed.

Signature

1
public abstract int PanelIndex {get; set;}

Return Value

int

Type

Summary

Gets the IndicatorType of an indicator.

Signature

1
public abstract IndicatorType Type {get;}

Return Value

IndicatorType

Parameters

Summary

Gets the collection of indicator parameters.

Signature

1
public abstract AlgoInstanceParameters Parameters {get;}

Return Value

AlgoInstanceParameters

Lines

Summary

Gets the IReadonlyList of indicator output lines.

Signature

1
public abstract IReadonlyList<IndicatorLine> Lines {get;}

Return Value

IReadonlyList