Skip to main content

fisher

Perform the Fisher Transform.

A technical indicator created by John F. Ehlers that converts prices into a Gaussian normal distribution. The indicator highlights when prices have moved to an extreme, based on recent prices. This may help in spotting turning points in the price of an asset. It also helps show the trend and isolate the price waves within a trend.

Parameters

data: list[openbb_core.provider.abstract.data.Data]

list of data to apply the indicator to.

Optional: False


index: str

Index column name, by default 'date'

Default: date

Optional: True


length: int

Fisher period, by default 14

Default: 14

Optional: True


signal: int

Fisher Signal period, by default 1

Default: 1

Optional: True


Returns

results: list[Data]

Serializable results.


provider: None

Provider name.


warnings: Optional[list[Warning_]]

list of warnings.


chart: Optional[Chart]

Chart object.


extra: dict[str, Any]

Extra info.


On this page