Documentation/AlgoCode/Function reference

fisher

Fisher Transform

Reference/Oscillators/Function

fisher(length)

Turns prices into an approximately normal series. Default 14. Sister: fishertrigger.

Parameters

NameTypeDescription
lengthint
default 14
Lookback in bars. Default 14.

Return value

series

Example

oscillator
f = fisher(10)
t = fishertrigger(10)
plot f as "Fisher"
plot t as "Trigger"
when f crosses above t then buy

See also