Skip to main content

FibonacciIndicatorCollection.GetFibonacciIndicatorByName(String) Method

Gets a Fibonacci Indicator within the collection by its name.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

public FibonacciIndicator GetFibonacciIndicatorByName(
    string name
)

Parameters

Name Type Description
name String

A String which specifies the name of the indicator to find.

Returns

Type Description
FibonacciIndicator

A FibonacciIndicator object that represents the indicator with the specified name.

Remarks

Note that this method finds only the first occurrence of an indicator with the specified name. If there are several indicators with the same name, only the first indicator found will be returned. If no element with the specified name is found, then this method returns null (Nothing in Visual Basic).

See Also