Skip to content

IndicatorLine

Summary

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

Signature

1
public abstract interface IndicatorLine

Namespace

cAlgo.API

Properties

Name

Summary

Gets the name of a line.

Signature

1
public abstract string Name {get;}

Return Value

string

LineStyle

Summary

Gets or sets the LineStyle of a line.

Signature

1
public abstract LineStyle LineStyle {get; set;}

Return Value

LineStyle

Color

Summary

Gets or sets the Color of a line.

Signature

1
public abstract Color Color {get; set;}

Return Value

Color

Thickness

Summary

Gets or sets the thickness of a line.

Signature

1
public abstract float Thickness {get; set;}

Return Value

float

Related Tutorials

IsVisible

Summary

Gets or sets the visibility of a line.

Signature

1
public abstract bool IsVisible {get; set;}

Return Value

bool

PlotType

Summary

Gets the PlotType of a line.

Signature

1
public abstract PlotType PlotType {get;}

Return Value

PlotType