Skip to content

ChartArrow

Summary

Represents the arrow chart object.

Signature

1
public abstract interface ChartArrow

Namespace

cAlgo.API

Methods

CalculateY (2)

CalculateY (1 of 2)

Summary

Calculates Y-axis value corresponding the specified bar index.

Signature

1
public abstract double CalculateY(int barIndex)

Parameters

Name Type Description
barIndex int Index of the bar.

Return Value

double

CalculateY (2 of 2)

Summary

Calculates Y-axis value corresponding the specified time value.

Signature

1
public abstract double CalculateY(DateTime time)

Parameters

Name Type Description
time DateTime The time.

Return Value

double

Properties

Time1

Summary

Gets or sets the value 1 on the Time line.

Signature

1
public abstract DateTime Time1 {get; set;}

Return Value

DateTime

Time2

Summary

Gets or sets the value 2 on the Time line.

Signature

1
public abstract DateTime Time2 {get; set;}

Return Value

DateTime

Y1

Summary

Gets or sets the value 1 on the Y-axis.

Signature

1
public abstract double Y1 {get; set;}

Return Value

double

Y2

Summary

Gets or sets the value 2 on the Y-axis.

Signature

1
public abstract double Y2 {get; set;}

Return Value

double

Color

Summary

Gets or sets the color of the Trend Line.

Signature

1
public abstract Color Color {get; set;}

Return Value

Color

Thickness

Summary

Gets or sets the thickness of the Arrow.

Signature

1
public abstract int Thickness {get; set;}

Return Value

int

Related Tutorials

LineStyle

Summary

Gets or sets the Arrow style.

Signature

1
public abstract LineStyle LineStyle {get; set;}

Return Value

LineStyle

ShowAngle

Summary

Defines the arrow angle.

Signature

1
public abstract bool ShowAngle {get; set;}

Return Value

bool

ExtendToInfinity

Summary

Defines if the Arrow extends to infinity.

Signature

1
public abstract bool ExtendToInfinity {get; set;}

Return Value

bool